diff --git a/.github/workflows/integration-test-DEV.yaml b/.github/workflows/integration-test-DEV.yaml index 7dddd34e56..689a647229 100644 --- a/.github/workflows/integration-test-DEV.yaml +++ b/.github/workflows/integration-test-DEV.yaml @@ -5,6 +5,19 @@ on: push: branches: - 'main' + paths-ignore: + - '**/*.md' + - '**/*.txt' + - 'charts/**' + - '.config/**' + - 'docs/**' + - 'local/**' + - 'irs-load-tests/**' + +# Cancel previous Test executions if a new one is triggered. +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: trigger-integration-test: diff --git a/CHANGELOG.md b/CHANGELOG.md index 240c7ead13..7ba1d31578 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.3.2] - 2023-07-31 +### Fixed +- BPN is now passed on correctly when traversing the item graph +- EDC Policies now get validated regardless of the type of constraint. +- EDC Policies of type FrameworkAgreement are now validated correctly. +- Fixed error in BPN handling for IRS Batch requests + ## [3.3.1] - 2023-07-24 ### Fixed - Added missing field `businessPartner` for relationship aspect SingleLevelUsageAsBuilt @@ -291,7 +298,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Unresolved - **Select Aspects you need** You are able to select the needed aspects for which you want to collect the correct endpoint information. -[Unreleased]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.3.1...HEAD +[Unreleased]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.3.2...HEAD +[3.3.2]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.3.1...3.3.2 [3.3.1]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.3.0...3.3.1 [3.3.0]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.2.1...3.3.0 [3.2.1]: https://github.com/eclipse-tractusx/item-relationship-service/compare/3.2.0...3.2.1 diff --git a/charts/irs-helm/CHANGELOG.md b/charts/irs-helm/CHANGELOG.md index 26c1f99f5d..a4ead7f17b 100644 --- a/charts/irs-helm/CHANGELOG.md +++ b/charts/irs-helm/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.4.0] - 2023-07-31 +### Added +- New option to configure accepted operands for policy checks via `edc.catalog.policies.acceptedRightOperands` and `edc.catalog.policies.acceptedLeftOperands` + +### Changed +- Update IRS version to 3.3.2 + ## [6.3.1] - 2023-07-24 ### Changed - Update IRS version to 3.3.1 diff --git a/charts/irs-helm/Chart.yaml b/charts/irs-helm/Chart.yaml index 9e09a5fcbe..3b0bddd8a6 100644 --- a/charts/irs-helm/Chart.yaml +++ b/charts/irs-helm/Chart.yaml @@ -35,12 +35,12 @@ 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: 6.3.1 +version: 6.4.0 # 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: "3.3.1" +appVersion: "3.3.2" dependencies: - name: common repository: https://charts.bitnami.com/bitnami diff --git a/charts/irs-helm/templates/configmap-spring-app-config.yaml b/charts/irs-helm/templates/configmap-spring-app-config.yaml index a671e5c609..307c51fb1a 100644 --- a/charts/irs-helm/templates/configmap-spring-app-config.yaml +++ b/charts/irs-helm/templates/configmap-spring-app-config.yaml @@ -106,6 +106,11 @@ data: path: {{ tpl (.Values.edc.submodel.path | default "/submodel") . | quote }} urn-prefix: {{ tpl (.Values.edc.submodel.urnprefix | default "/urn") . | quote }} + catalog: + policies: + acceptedRightOperands: {{ .Values.edc.catalog.policies.acceptedRightOperands | default "" | quote }} + acceptedLeftOperands: {{ .Values.edc.catalog.policies.acceptedLeftOperands | default "" | quote }} + edc: catalog: policies: diff --git a/charts/irs-helm/values.yaml b/charts/irs-helm/values.yaml index 8d82b73655..cdb2e48f4f 100644 --- a/charts/irs-helm/values.yaml +++ b/charts/irs-helm/values.yaml @@ -180,7 +180,9 @@ edc: policies: # IRS will only negotiate contracts for offers with a policy as defined in the allowedNames list. # If a requested asset does not provide one of these policies, a tombstone will be created and this node will not be processed. - allowedNames: ID 3.0 Trace, ID 3.1 Trace, R2_Traceability # List of comma separated names of the policies to accept. + allowedNames: ID 3.0 Trace, ID 3.1 Trace, R2_Traceability, FrameworkAgreement.traceability, Membership # List of comma separated names of the policies to accept. + acceptedRightOperands: active # List of comma separated names of the rightOperands to accept. + acceptedLeftOperands: PURPOSE # List of comma separated names of the leftOperands to accept. discovery: endpoint: # EDC Discovery Service endpoint diff --git a/docs/src/docs/administration/configuration.adoc b/docs/src/docs/administration/configuration.adoc index c2564f8b5e..ee4dc51e40 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, MIW and Vault configuration / secrets depend on your setup and might need to be provided externally. +*Note: IRS currently does not support any roles or rights for the API. As long as you provide a valid access token, you can use the IRS API to view and control all jobs on the IRS instance.* + include::irs-spring-config.adoc[leveloffset=+1] == Helm configuration IRS (values.yaml) diff --git a/docs/src/docs/arc42/cross-cutting/safety-security.adoc b/docs/src/docs/arc42/cross-cutting/safety-security.adoc index dd73a84bfe..d63f2600aa 100644 --- a/docs/src/docs/arc42/cross-cutting/safety-security.adoc +++ b/docs/src/docs/arc42/cross-cutting/safety-security.adoc @@ -8,6 +8,8 @@ JWT token should also contain two fields: - `view_irs` role inside `resource_access` claim, - BPN claim which is equal to the configuration value from `API_ALLOWED_BPN` property +*Note: IRS currently does not support any other roles or rights. As long as you provide a valid token with the content listed above, you can access the IRS API to view and control all jobs on the IRS instance.* + === IRS as DTR client The IRS acts as a client for the Digital Twin Registry (DTR), which is also secured using OAuth2.0 / Open ID Connect. The IRS uses client credentials to authenticate requests to the DTR. Due to this, the IRS account needs to have access to every item in the DTR, unrelated to the permissions of the account calling the IRS API. diff --git a/docs/src/docs/arc42/cross-cutting/under-the-hood.adoc b/docs/src/docs/arc42/cross-cutting/under-the-hood.adoc index d160510a5c..2fcde268dc 100644 --- a/docs/src/docs/arc42/cross-cutting/under-the-hood.adoc +++ b/docs/src/docs/arc42/cross-cutting/under-the-hood.adoc @@ -66,7 +66,7 @@ Data validation happens at two points: - IRS API: the data sent by the client is validated to match the model defined in the IRS. If the validation fails, the IRS sends a HTTP 400 response and indicates the problem to the caller. - Submodel payload: each time a submodel payload is requested from via EDC, the data is validated against the model defined in the SemanticHub for the matching aspect type. -- EDC Contract Offer Policy: each time IRS consumes data over the EDC, the policies of the offered contract will be validated. Only policies which are defined via the PolicyStory will be accepted. +- EDC Contract Offer Policy: each time IRS consumes data over the EDC, the policies of the offered contract will be validated. IDs of so-called "Rahmenverträgen" or Framework-Agreements can be added to the IRS Policy Store to be accepted by the IRS. If a Contract Offer does not match any of the IDs store in Policy Store, the contract offer will be declined and no data will be consumed. == Caching diff --git a/docs/src/docs/arc42/glossary.adoc b/docs/src/docs/arc42/glossary.adoc index e92d29953c..74fff63855 100644 --- a/docs/src/docs/arc42/glossary.adoc +++ b/docs/src/docs/arc42/glossary.adoc @@ -15,4 +15,9 @@ |Traversal Aspect |aka Edge: Aspect which the IRS uses for traversal through the data chain. Identified by a parent-child or a child-parent relationship. Samples: SingleLevelBomAsPlanned, SingleLevelBomAsBuilt and SingleLevelUsageAsBuilt +|Verifiable Credential (VC) | For more information see: https://github.com/eclipse-tractusx/ssi-docu/tree/main/docs/architecture/cx-3-2/3.%20Verifiable%20Credentials[Verifiable Credentials] +|Eclipse Dataspace Connector (EDC) | For more information see: https://github.com/eclipse-tractusx/tractusx-edc +|Managed Identity Wallet (MIW) | For more information see: https://github.com/eclipse-tractusx/managed-identity-wallet +|Self-Sovereign Identity (SSI) | For more information see: https://github.com/eclipse-tractusx/ssi-docu/tree/main/docs/architecture/cx-3-2 +|PolicyStore | The Policy Store is an IRS component which provides an interface for getting, adding and deleting accepted IRS EDC policies. These policies will be used to validate EDC contract offers. |=== \ No newline at end of file diff --git a/docs/src/uml-diagrams/building-block-view/whitebox_overall_decentral.puml b/docs/src/uml-diagrams/building-block-view/whitebox_overall_decentral.puml index a8034da4ff..3de08e340c 100644 --- a/docs/src/uml-diagrams/building-block-view/whitebox_overall_decentral.puml +++ b/docs/src/uml-diagrams/building-block-view/whitebox_overall_decentral.puml @@ -12,7 +12,7 @@ component [**IRSApplication**] <> { component [**CatenaX-Network**] <> { component [**IAM/KeyCloak**] <> as IAM_IRS - component [**MIW**] <> as IAM_DAPS + component [**MIW**] <> as identity_wallet } component [**Tier/OEM**] <> { @@ -35,13 +35,13 @@ IrsApiConsumer -right(0- IRS IrsApiConsumer <.r.> IAM_IRS IRS <.d.> EDC IRS <.l.> IAM_IRS -EDC <..> IAM_DAPS +EDC <..> identity_wallet EDC <..> EDCProviderOEM EDC <...> EDCProviderTier1 EDC <....> EDCProviderTier11 -IAM_DAPS <..> EDCProviderOEM -IAM_DAPS <...> EDCProviderTier1 -IAM_DAPS <....> EDCProviderTier11 +identity_wallet <..> EDCProviderOEM +identity_wallet <...> EDCProviderTier1 +identity_wallet <....> EDCProviderTier11 EDCProviderOEM <..> SubmodelServerOEM EDCProviderTier1 <..> SubmodelServerTier1 EDCProviderTier11 <..> SubmodelServerTier11 diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/DigitalTwinDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/DigitalTwinDelegate.java index d7ecd56cc5..fa14e4177b 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/DigitalTwinDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/DigitalTwinDelegate.java @@ -25,6 +25,7 @@ import java.util.List; import lombok.extern.slf4j.Slf4j; +import org.apache.commons.lang3.StringUtils; import org.eclipse.tractusx.irs.aaswrapper.job.AASTransferProcess; import org.eclipse.tractusx.irs.aaswrapper.job.ItemContainer; import org.eclipse.tractusx.irs.component.JobParameter; @@ -55,6 +56,13 @@ public DigitalTwinDelegate(final AbstractDelegate nextStep, public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContainerBuilder, final JobParameter jobData, final AASTransferProcess aasTransferProcess, final PartChainIdentificationKey itemId) { + if (StringUtils.isBlank(itemId.getBpn())) { + log.warn("Could not process item with id {} because no BPN was provided. Creating Tombstone.", + itemId.getGlobalAssetId()); + return itemContainerBuilder.tombstone( + Tombstone.from(itemId.getGlobalAssetId(), null, "Can't get relationship without a BPN", 0, + ProcessStep.DIGITAL_TWIN_REQUEST)).build(); + } try { itemContainerBuilder.shell(digitalTwinRegistryService.fetchShells( List.of(new DigitalTwinRegistryKey(itemId.getGlobalAssetId(), itemId.getBpn())) diff --git a/irs-api/src/main/resources/application.yml b/irs-api/src/main/resources/application.yml index ad0f28f1a4..47a2e0dd3a 100644 --- a/irs-api/src/main/resources/application.yml +++ b/irs-api/src/main/resources/application.yml @@ -152,10 +152,10 @@ irs-edc-client: connect: PT90S # HTTP connect timeout for the submodel client catalog: - cache: - enabled: true # Set to false to disable caching - ttl: P1D # Time after which a cached Item is no longer valid and the real catalog is called instead - maxCachedItems: 64000 # Maximum amount of cached catalog items + policies: + acceptedRightOperands: active # List of comma separated names of the rightOperands to accept. + acceptedLeftOperands: PURPOSE # List of comma separated names of the leftOperands to accept. + edc: catalog: policies: diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/DigitalTwinDelegateTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/DigitalTwinDelegateTest.java index 1808ba8aa8..8a045a55be 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/DigitalTwinDelegateTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/DigitalTwinDelegateTest.java @@ -63,6 +63,9 @@ void shouldFillItemContainerWithShell() throws RegistryServiceException { } private static PartChainIdentificationKey createKey() { + return PartChainIdentificationKey.builder().globalAssetId("itemId").bpn("bpn123").build(); + } + private static PartChainIdentificationKey createKeyWithoutBpn() { return PartChainIdentificationKey.builder().globalAssetId("itemId").build(); } @@ -86,4 +89,19 @@ void shouldCatchRestClientExceptionAndPutTombstone() throws RegistryServiceExcep ProcessStep.DIGITAL_TWIN_REQUEST); } + @Test + void shouldCreateTombstoneIfBPNEmpty() { + // when + final ItemContainer result = digitalTwinDelegate.process(ItemContainer.builder(), jobParameter(), + new AASTransferProcess("id", 0), createKeyWithoutBpn()); + + // then + assertThat(result).isNotNull(); + assertThat(result.getTombstones()).hasSize(1); + assertThat(result.getTombstones().get(0).getCatenaXId()).isEqualTo("itemId"); + assertThat(result.getTombstones().get(0).getProcessingError().getErrorDetail()).isEqualTo("Can't get relationship without a BPN"); + assertThat(result.getTombstones().get(0).getProcessingError().getProcessStep()).isEqualTo( + ProcessStep.DIGITAL_TWIN_REQUEST); + } + } diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/BatchControllerTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/BatchControllerTest.java index 877e70ef69..383281e3cb 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/BatchControllerTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/BatchControllerTest.java @@ -72,7 +72,6 @@ class BatchControllerTest { private AuthorizationService authorizationService; @Test - @Disabled("Disabled - failing on pipeline") void shouldReturnUnauthorizedWhenAuthenticationIsMissing() throws Exception { this.mockMvc.perform(post("/irs/orders").contentType(MediaType.APPLICATION_JSON) .content(new ObjectMapper().writeValueAsString( diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/BatchOrderEventListenerTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/BatchOrderEventListenerTest.java index 6b26498c3d..dca50a8f1e 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/BatchOrderEventListenerTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/BatchOrderEventListenerTest.java @@ -160,7 +160,6 @@ void shouldStartNextBatchWhenPreviousFinished() { @Test void shouldPublishBatchOrderProcessingFinishedEventWhenAllBatchesCompleted() { // given - final int numberOfJobs = 10; final int timeout = 60; final BatchOrder batchOrder = BatchOrder.builder() .batchOrderId(BATCH_ORDER_ID) diff --git a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerService.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerService.java index dfd303d3cd..b7f1e251b4 100644 --- a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerService.java +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerService.java @@ -29,14 +29,16 @@ import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; +import org.eclipse.edc.policy.model.AndConstraint; import org.eclipse.edc.policy.model.AtomicConstraint; import org.eclipse.edc.policy.model.Constraint; -import org.eclipse.edc.policy.model.MultiplicityConstraint; import org.eclipse.edc.policy.model.Operator; +import org.eclipse.edc.policy.model.OrConstraint; import org.eclipse.edc.policy.model.Permission; import org.eclipse.edc.policy.model.Policy; +import org.eclipse.edc.policy.model.XoneConstraint; import org.eclipse.tractusx.irs.data.StringMapper; -import org.jetbrains.annotations.NotNull; +import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; import org.springframework.web.util.UriUtils; @@ -49,6 +51,10 @@ public class PolicyCheckerService { private final AcceptedPoliciesProvider policyStore; + @Value("${irs-edc-client.catalog.policies.acceptedRightOperands:active}") + private final List acceptedRightOperands; + @Value("${irs-edc-client.catalog.policies.acceptedLeftOperands:PURPOSE}") + private final List acceptedLeftOperands; public boolean isValid(final Policy policy) { final List policyList = getAllowedPolicies(); @@ -57,23 +63,20 @@ public boolean isValid(final Policy policy) { if (getValidStoredPolicyIds().contains("*")) { return true; } - return policy.getPermissions() - .stream() - .anyMatch(permission -> policyList.stream() - .anyMatch(allowedPolicy -> isValid(permission, allowedPolicy))); + return policy.getPermissions().stream().allMatch(permission -> isValid(permission, policyList)); } - @NotNull private List getAllowedPolicies() { final List policyIds = getValidStoredPolicyIds(); final List allowedPolicies = new ArrayList<>(); - allowedPolicies.addAll(policyIds.stream().map(policy -> createPolicy("idsc:PURPOSE", policy)).toList()); - allowedPolicies.addAll(policyIds.stream().map(policy -> createPolicy(policy, "active")).toList()); + acceptedRightOperands.forEach(rightOperand -> allowedPolicies.addAll( + policyIds.stream().map(policy -> createPolicy(policy, rightOperand)).toList())); + acceptedLeftOperands.forEach(leftOperand -> allowedPolicies.addAll( + policyIds.stream().map(policy -> createPolicy(leftOperand, policy)).toList())); return allowedPolicies; } - @NotNull private List getValidStoredPolicyIds() { return policyStore.getAcceptedPolicies() .stream() @@ -83,29 +86,50 @@ private List getValidStoredPolicyIds() { .toList(); } - private boolean isValid(final Permission permission, final PolicyDefinition policyDefinition) { - return permission.getAction().getType().equals(policyDefinition.getPermissionActionType()) - && permission.getConstraints().stream().anyMatch(constraint -> isValid(constraint, policyDefinition)); + private boolean isValid(final Permission permission, final List policyDefinitions) { + final boolean permissionTypesMatch = policyDefinitions.stream() + .allMatch( + policyDefinition -> policyDefinition.getPermissionActionType() + .equals(permission.getAction() + .getType())); + final boolean constraintsMatch = permission.getConstraints() + .stream() + .allMatch(constraint -> isValid(constraint, policyDefinitions)); + return permissionTypesMatch && constraintsMatch; } - private boolean isValid(final Constraint constraint, final PolicyDefinition policyDefinition) { + private boolean isValid(final Constraint constraint, final List policyDefinitions) { if (constraint instanceof AtomicConstraint atomicConstraint) { - return AtomicConstraintValidator.builder() - .atomicConstraint(atomicConstraint) - .leftExpressionValue(policyDefinition.getLeftExpressionValue()) - .rightExpressionValue(policyDefinition.getRightExpressionValue()) - .expectedOperator( - Operator.valueOf(policyDefinition.getConstraintOperator())) - .build() - .isValid(); - } else if (constraint instanceof MultiplicityConstraint multiplicityConstraint) { - return multiplicityConstraint.getConstraints() - .stream() - .anyMatch(constraint1 -> isValid(constraint1, policyDefinition)); + return validateAtomicConstraint(atomicConstraint, policyDefinitions); + } else if (constraint instanceof AndConstraint andConstraint) { + return andConstraint.getConstraints().stream().allMatch(constr -> isValid(constr, policyDefinitions)); + } else if (constraint instanceof OrConstraint orConstraint) { + return orConstraint.getConstraints().stream().anyMatch(constr -> isValid(constr, policyDefinitions)); + } else if (constraint instanceof XoneConstraint xoneConstraint) { + return xoneConstraint.getConstraints().stream().filter(constr -> isValid(constr, policyDefinitions)).count() + == 1; } return false; } + private boolean validateAtomicConstraint(final AtomicConstraint atomicConstraint, + final PolicyDefinition policyDefinition) { + return AtomicConstraintValidator.builder() + .atomicConstraint(atomicConstraint) + .leftExpressionValue(policyDefinition.getLeftExpressionValue()) + .rightExpressionValue(policyDefinition.getRightExpressionValue()) + .expectedOperator(Operator.valueOf(policyDefinition.getConstraintOperator())) + .build() + .isValid(); + } + + private boolean validateAtomicConstraint(final AtomicConstraint atomicConstraint, + final List policyDefinitions) { + return policyDefinitions.stream() + .anyMatch(policyDefinition -> validateAtomicConstraint(atomicConstraint, + policyDefinition)); + } + private PolicyDefinition createPolicy(final String leftExpression, final String rightExpression) { return PolicyDefinition.builder() .permissionActionType("USE") diff --git a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelFacadeWiremockTest.java b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelFacadeWiremockTest.java index 27d1d9afe4..8e79ae5be5 100644 --- a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelFacadeWiremockTest.java +++ b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelFacadeWiremockTest.java @@ -110,8 +110,12 @@ void configureSystemUnderTest() { final AcceptedPoliciesProvider acceptedPoliciesProvider = mock(AcceptedPoliciesProvider.class); when(acceptedPoliciesProvider.getAcceptedPolicies()).thenReturn( - List.of(new AcceptedPolicy("FrameworkAgreement.traceability", OffsetDateTime.now().plusYears(1)))); - final PolicyCheckerService policyCheckerService = new PolicyCheckerService(acceptedPoliciesProvider); + List.of(new AcceptedPolicy("FrameworkAgreement.traceability", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("Membership", OffsetDateTime.now().plusYears(1)))); + final List leftOperands = List.of("PURPOSE"); + final List rightOperands = List.of("active"); + final PolicyCheckerService policyCheckerService = new PolicyCheckerService(acceptedPoliciesProvider, + rightOperands, leftOperands); final ContractNegotiationService contractNegotiationService = new ContractNegotiationService(controlPlaneClient, policyCheckerService, config); diff --git a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerServiceTest.java b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerServiceTest.java index 8db2817a17..0860605674 100644 --- a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerServiceTest.java +++ b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerServiceTest.java @@ -23,17 +23,16 @@ package org.eclipse.tractusx.irs.edc.client.policy; import static org.assertj.core.api.Assertions.assertThat; +import static org.eclipse.tractusx.irs.edc.client.testutil.TestMother.createAndConstraintPolicy; +import static org.eclipse.tractusx.irs.edc.client.testutil.TestMother.createAtomicConstraint; +import static org.eclipse.tractusx.irs.edc.client.testutil.TestMother.createAtomicConstraintPolicy; +import static org.eclipse.tractusx.irs.edc.client.testutil.TestMother.createOrConstraintPolicy; +import static org.eclipse.tractusx.irs.edc.client.testutil.TestMother.createXOneConstraintPolicy; import static org.mockito.Mockito.when; import java.time.OffsetDateTime; import java.util.List; -import org.eclipse.edc.policy.model.Action; -import org.eclipse.edc.policy.model.AndConstraint; -import org.eclipse.edc.policy.model.AtomicConstraint; -import org.eclipse.edc.policy.model.LiteralExpression; -import org.eclipse.edc.policy.model.Operator; -import org.eclipse.edc.policy.model.Permission; import org.eclipse.edc.policy.model.Policy; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @@ -50,58 +49,24 @@ class PolicyCheckerServiceTest { @Mock private AcceptedPoliciesProvider policyStore; - private static Policy createPolicy(final String leftExpr, final String rightExpr) { - final AtomicConstraint constraint = AtomicConstraint.Builder.newInstance() - .leftExpression(new LiteralExpression(leftExpr)) - .rightExpression(new LiteralExpression(rightExpr)) - .operator(Operator.EQ) - .build(); - final Permission permission = Permission.Builder.newInstance() - .action(Action.Builder.newInstance().type("USE").build()) - .constraint(constraint) - .build(); - return Policy.Builder.newInstance().permission(permission).build(); - } - - private static Policy createAndPolicy(final String leftExpr, final String rightExpr) { - final AtomicConstraint constraint1 = AtomicConstraint.Builder.newInstance() - .leftExpression(new LiteralExpression(leftExpr)) - .rightExpression(new LiteralExpression(rightExpr)) - .operator(Operator.EQ) - .build(); - final AtomicConstraint constraint2 = AtomicConstraint.Builder.newInstance() - .leftExpression( - new LiteralExpression("leftExpression")) - .rightExpression( - new LiteralExpression("rightExpression")) - .operator(Operator.EQ) - .build(); - final AndConstraint build = AndConstraint.Builder.newInstance() - .constraints(List.of(constraint1, constraint2)) - .build(); - final Permission permission = Permission.Builder.newInstance() - .action(Action.Builder.newInstance().type("USE").build()) - .constraint(build) - .build(); - return Policy.Builder.newInstance().permission(permission).build(); - } - @BeforeEach void setUp() { final var policyList = List.of(new AcceptedPolicy("ID 3.0 Trace", OffsetDateTime.now().plusYears(1)), new AcceptedPolicy("FrameworkAgreement.traceability", OffsetDateTime.now().plusYears(1))); when(policyStore.getAcceptedPolicies()).thenReturn(policyList); - policyCheckerService = new PolicyCheckerService(policyStore); + final List leftOperands = List.of("PURPOSE"); + final List rightOperands = List.of("active"); + policyCheckerService = new PolicyCheckerService(policyStore, rightOperands, leftOperands); } @ParameterizedTest - @CsvSource(value = { "idsc:PURPOSE,ID 3.0 Trace", - "idsc:PURPOSE,ID%203.0%20Trace", + @CsvSource(value = { "PURPOSE,ID 3.0 Trace", + "PURPOSE,ID%203.0%20Trace", "FrameworkAgreement.traceability,active" }, delimiter = ',') void shouldConfirmValidPolicy(final String leftExpr, final String rightExpr) { // given - Policy policy = createPolicy(leftExpr, rightExpr); + Policy policy = createAtomicConstraintPolicy(leftExpr, rightExpr); // when boolean result = policyCheckerService.isValid(policy); @@ -112,7 +77,7 @@ void shouldConfirmValidPolicy(final String leftExpr, final String rightExpr) { @Test void shouldRejectWrongPolicy() { // given - Policy policy = createPolicy("idsc:PURPOSE", "Wrong_Trace"); + Policy policy = createAtomicConstraintPolicy("PURPOSE", "Wrong_Trace"); // when boolean result = policyCheckerService.isValid(policy); @@ -123,7 +88,7 @@ void shouldRejectWrongPolicy() { @Test void shouldRejectWhenPolicyStoreIsEmpty() { // given - Policy policy = createPolicy("idsc:PURPOSE", "ID 3.0 Trace"); + Policy policy = createAtomicConstraintPolicy("PURPOSE", "ID 3.0 Trace"); when(policyStore.getAcceptedPolicies()).thenReturn(List.of()); // when boolean result = policyCheckerService.isValid(policy); @@ -138,7 +103,7 @@ void shouldConfirmValidPolicyWhenWildcardIsSet() { final var policyList = List.of(new AcceptedPolicy("ID 3.0 Trace", OffsetDateTime.now().plusYears(1)), new AcceptedPolicy("*", OffsetDateTime.now().plusYears(1))); when(policyStore.getAcceptedPolicies()).thenReturn(policyList); - Policy policy = createPolicy("FrameworkAgreement.traceability", "active"); + Policy policy = createAtomicConstraintPolicy("FrameworkAgreement.traceability", "active"); // when boolean result = policyCheckerService.isValid(policy); @@ -151,7 +116,43 @@ void shouldRejectWhenWildcardIsPartOfPolicy() { // given final var policyList = List.of(new AcceptedPolicy("Policy*", OffsetDateTime.now().plusYears(1))); when(policyStore.getAcceptedPolicies()).thenReturn(policyList); - Policy policy = createPolicy("FrameworkAgreement.traceability", "active"); + Policy policy = createAtomicConstraintPolicy("FrameworkAgreement.traceability", "active"); + // when + boolean result = policyCheckerService.isValid(policy); + + // then + assertThat(result).isFalse(); + } + + @Test + void shouldValidateAndConstraints() { + // given + final var policyList = List.of( + new AcceptedPolicy("FrameworkAgreement.traceability", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("Membership", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("ID 3.1 Trace", OffsetDateTime.now().plusYears(1))); + when(policyStore.getAcceptedPolicies()).thenReturn(policyList); + Policy policy = createAndConstraintPolicy( + List.of(createAtomicConstraint("FrameworkAgreement.traceability", "active"), + createAtomicConstraint("Membership", "active"), + createAtomicConstraint("PURPOSE", "ID 3.1 Trace"))); + // when + boolean result = policyCheckerService.isValid(policy); + + // then + assertThat(result).isTrue(); + } + + @Test + void shouldRejectAndConstraintsWhenOnlyOneMatch() { + // given + final var policyList = List.of( + new AcceptedPolicy("FrameworkAgreement.traceability", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("FrameworkAgreement.dismantler", OffsetDateTime.now().plusYears(1))); + when(policyStore.getAcceptedPolicies()).thenReturn(policyList); + Policy policy = createAndConstraintPolicy( + List.of(createAtomicConstraint("FrameworkAgreement.traceability", "active"), + createAtomicConstraint("Membership", "active"))); // when boolean result = policyCheckerService.isValid(policy); @@ -160,9 +161,15 @@ void shouldRejectWhenWildcardIsPartOfPolicy() { } @Test - void shouldValidateDifferentTypesOfConstraints() { + void shouldValidateOrConstraints() { // given - Policy policy = createAndPolicy("FrameworkAgreement.traceability", "active"); + final var policyList = List.of( + new AcceptedPolicy("FrameworkAgreement.traceability", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("FrameworkAgreement.dismantler", OffsetDateTime.now().plusYears(1))); + when(policyStore.getAcceptedPolicies()).thenReturn(policyList); + Policy policy = createOrConstraintPolicy( + List.of(createAtomicConstraint("FrameworkAgreement.traceability", "active"), + createAtomicConstraint("Membership", "active"))); // when boolean result = policyCheckerService.isValid(policy); @@ -170,4 +177,92 @@ void shouldValidateDifferentTypesOfConstraints() { assertThat(result).isTrue(); } + @Test + void shouldRejectOrConstraintsWhenNoneMatch() { + // given + final var policyList = List.of(new AcceptedPolicy("FrameworkAgreement.test", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("FrameworkAgreement.dismantler", OffsetDateTime.now().plusYears(1))); + when(policyStore.getAcceptedPolicies()).thenReturn(policyList); + Policy policy = createAndConstraintPolicy( + List.of(createAtomicConstraint("FrameworkAgreement.traceability", "active"), + createAtomicConstraint("Membership", "active"))); + // when + boolean result = policyCheckerService.isValid(policy); + + // then + assertThat(result).isFalse(); + } + + @Test + void shouldValidateXOneConstraints() { + // given + final var policyList = List.of( + new AcceptedPolicy("FrameworkAgreement.traceability", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("FrameworkAgreement.dismantler", OffsetDateTime.now().plusYears(1))); + when(policyStore.getAcceptedPolicies()).thenReturn(policyList); + + Policy policy = createXOneConstraintPolicy( + List.of(createAtomicConstraint("FrameworkAgreement.traceability", "active"), + createAtomicConstraint("Membership", "active"))); + // when + boolean result = policyCheckerService.isValid(policy); + + // then + assertThat(result).isTrue(); + } + + @Test + void shouldRejectXOneConstraintsWhenNoneMatch() { + // given + final var policyList = List.of(new AcceptedPolicy("FrameworkAgreement.test", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("FrameworkAgreement.dismantler", OffsetDateTime.now().plusYears(1))); + when(policyStore.getAcceptedPolicies()).thenReturn(policyList); + Policy policy = createXOneConstraintPolicy( + List.of(createAtomicConstraint("FrameworkAgreement.traceability", "active"), + createAtomicConstraint("Membership", "active"))); + // when + boolean result = policyCheckerService.isValid(policy); + + // then + assertThat(result).isFalse(); + } + + @Test + void shouldRejectXOneConstraintsWhenMoreThanOneMatch() { + // given + final var policyList = List.of( + new AcceptedPolicy("FrameworkAgreement.traceability", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("Membership", OffsetDateTime.now().plusYears(1))); + when(policyStore.getAcceptedPolicies()).thenReturn(policyList); + Policy policy = createXOneConstraintPolicy( + List.of(createAtomicConstraint("FrameworkAgreement.traceability", "active"), + createAtomicConstraint("Membership", "active"))); + // when + boolean result = policyCheckerService.isValid(policy); + + // then + assertThat(result).isFalse(); + } + + @Test + void shouldAcceptMultipleRightOperands() { + // given + final var policyList = List.of( + new AcceptedPolicy("FrameworkAgreement.traceability", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("FrameworkAgreement.dismantler", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("Membership", OffsetDateTime.now().plusYears(1))); + when(policyStore.getAcceptedPolicies()).thenReturn(policyList); + final PolicyCheckerService testee = new PolicyCheckerService(policyStore, List.of("active", "inactive"), + List.of()); + + Policy policy = createAndConstraintPolicy( + List.of(createAtomicConstraint("FrameworkAgreement.traceability", "active"), + createAtomicConstraint("FrameworkAgreement.dismantler", "inactive"), + createAtomicConstraint("Membership", "active"))); + // when + boolean result = testee.isValid(policy); + + // then + assertThat(result).isTrue(); + } } \ No newline at end of file diff --git a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerSpringBootTest.java b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerSpringBootTest.java new file mode 100644 index 0000000000..51c189569c --- /dev/null +++ b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/PolicyCheckerSpringBootTest.java @@ -0,0 +1,65 @@ +/******************************************************************************** + * Copyright (c) 2021,2022,2023 + * 2022: ZF Friedrichshafen AG + * 2022: ISTOS GmbH + * 2022,2023: Bayerische Motoren Werke Aktiengesellschaft (BMW AG) + * 2022,2023: BOSCH AG + * Copyright (c) 2021,2022,2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Apache License, Version 2.0 which is available at + * https://www.apache.org/licenses/LICENSE-2.0. * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * SPDX-License-Identifier: Apache-2.0 + ********************************************************************************/ +package org.eclipse.tractusx.irs.edc.client.policy; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.eclipse.tractusx.irs.edc.client.testutil.TestMother.createAndConstraintPolicy; +import static org.eclipse.tractusx.irs.edc.client.testutil.TestMother.createAtomicConstraint; +import static org.mockito.Mockito.when; + +import java.time.OffsetDateTime; +import java.util.List; + +import org.eclipse.edc.policy.model.Policy; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.test.mock.mockito.MockBean; + +@SpringBootTest(classes = PolicyCheckerService.class) +class PolicyCheckerSpringBootTest { + + @MockBean + private AcceptedPoliciesProvider.DefaultAcceptedPoliciesProvider policiesProvider; + + @Autowired + private PolicyCheckerService policyCheckerService; + + @Test + void shouldValidateWithDefaultOperands() { + // given + final var policyList = List.of( + new AcceptedPolicy("FrameworkAgreement.traceability", OffsetDateTime.now().plusYears(1)), + new AcceptedPolicy("ID 3.1 Trace", OffsetDateTime.now().plusYears(1))); + when(policiesProvider.getAcceptedPolicies()).thenReturn(policyList); + Policy policy = createAndConstraintPolicy( + List.of(createAtomicConstraint("FrameworkAgreement.traceability", "active"), + createAtomicConstraint("PURPOSE", "ID 3.1 Trace"))); + // when + boolean result = policyCheckerService.isValid(policy); + + // then + assertThat(result).isTrue(); + } + +} diff --git a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/testutil/TestMother.java b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/testutil/TestMother.java index be9685098d..356ffc4abd 100644 --- a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/testutil/TestMother.java +++ b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/testutil/TestMother.java @@ -48,9 +48,16 @@ import org.eclipse.edc.catalog.spi.Dataset; import org.eclipse.edc.catalog.spi.Distribution; import org.eclipse.edc.jsonld.TitaniumJsonLd; +import org.eclipse.edc.policy.model.Action; +import org.eclipse.edc.policy.model.AndConstraint; import org.eclipse.edc.policy.model.AtomicConstraint; +import org.eclipse.edc.policy.model.Constraint; import org.eclipse.edc.policy.model.LiteralExpression; +import org.eclipse.edc.policy.model.Operator; +import org.eclipse.edc.policy.model.OrConstraint; +import org.eclipse.edc.policy.model.Permission; import org.eclipse.edc.policy.model.Policy; +import org.eclipse.edc.policy.model.XoneConstraint; import org.eclipse.edc.spi.monitor.ConsoleMonitor; import org.eclipse.tractusx.irs.edc.client.transformer.EdcTransformer; import org.jetbrains.annotations.NotNull; @@ -103,4 +110,42 @@ private static String getOfferId(final String assetId) { return UUID.randomUUID() + ":" + assetId + ":" + UUID.randomUUID(); } + private static Permission createUsePermission(final Constraint constraint) { + return Permission.Builder.newInstance() + .action(Action.Builder.newInstance().type("USE").build()) + .constraint(constraint) + .build(); + } + + public static AtomicConstraint createAtomicConstraint(final String leftExpr, final String rightExpr) { + return AtomicConstraint.Builder.newInstance() + .leftExpression(new LiteralExpression(leftExpr)) + .rightExpression(new LiteralExpression(rightExpr)) + .operator(Operator.EQ) + .build(); + } + + public static Policy createAtomicConstraintPolicy(final String leftExpr, final String rightExpr) { + final AtomicConstraint constraint = createAtomicConstraint(leftExpr, rightExpr); + final Permission permission = createUsePermission(constraint); + return Policy.Builder.newInstance().permission(permission).build(); + } + + public static Policy createAndConstraintPolicy(final List constraints) { + final AndConstraint andConstraint = AndConstraint.Builder.newInstance().constraints(constraints).build(); + final Permission permission = createUsePermission(andConstraint); + return Policy.Builder.newInstance().permission(permission).build(); + } + + public static Policy createOrConstraintPolicy(final List constraints) { + final OrConstraint orConstraint = OrConstraint.Builder.newInstance().constraints(constraints).build(); + final Permission permission = createUsePermission(orConstraint); + return Policy.Builder.newInstance().permission(permission).build(); + } + + public static Policy createXOneConstraintPolicy(final List constraints) { + final XoneConstraint orConstraint = XoneConstraint.Builder.newInstance().constraints(constraints).build(); + final Permission permission = createUsePermission(orConstraint); + return Policy.Builder.newInstance().permission(permission).build(); + } } diff --git a/irs-edc-client/src/test/resources/__files/edc/responseCatalog.json b/irs-edc-client/src/test/resources/__files/edc/responseCatalog.json index 53d7c6621f..6362c2bd84 100644 --- a/irs-edc-client/src/test/resources/__files/edc/responseCatalog.json +++ b/irs-edc-client/src/test/resources/__files/edc/responseCatalog.json @@ -15,11 +15,11 @@ "odrl:constraint": { "odrl:and": [ { - "odrl:leftOperand": "BusinessPartnerNumber", + "odrl:leftOperand": "Membership", "odrl:operator": { "@id": "odrl:eq" }, - "odrl:rightOperand": "{{BPN6789}}" + "odrl:rightOperand": "active" }, { "odrl:leftOperand": "FrameworkAgreement.traceability", diff --git a/irs-load-tests/src/test/java/org/eclipse/tractusx/irs/IRSLoadTestSimulation.java b/irs-load-tests/src/test/java/org/eclipse/tractusx/irs/IRSLoadTestSimulation.java index b01a1db31f..35edaab1ea 100644 --- a/irs-load-tests/src/test/java/org/eclipse/tractusx/irs/IRSLoadTestSimulation.java +++ b/irs-load-tests/src/test/java/org/eclipse/tractusx/irs/IRSLoadTestSimulation.java @@ -52,6 +52,10 @@ public class IRSLoadTestSimulation extends Simulation { .saveAs("id"))) .exec(http("Get Job") .get("/irs/jobs/#{id}?returnUncompletedJob=true") + .check(status().is(200)) + .check(jsonPath( + "$..state") + .is("RUNNING")) .headers(headers_1)); setUp(scn.injectOpen(atOnceUsers(testCycles))).protocols(httpProtocol); diff --git a/irs-load-tests/src/test/resources/org/eclipse/tractusx/irs/loadtest/IRS-start-job-body.json b/irs-load-tests/src/test/resources/org/eclipse/tractusx/irs/loadtest/IRS-start-job-body.json index bd4c87c3e8..9ad9e77d26 100644 --- a/irs-load-tests/src/test/resources/org/eclipse/tractusx/irs/loadtest/IRS-start-job-body.json +++ b/irs-load-tests/src/test/resources/org/eclipse/tractusx/irs/loadtest/IRS-start-job-body.json @@ -1,10 +1,14 @@ { + "key": + { + "globalAssetId": "urn:uuid:ed333e9a-5afa-40b2-99da-bae2fd21501e", + "bpn": "BPNL00000003AVTH" + }, "bomLifecycle": "asBuilt", "aspects": [ "SingleLevelBomAsBuilt" ], "depth": 10, "direction": "downward", - "collectAspects": true, - "globalAssetId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6" + "collectAspects": true } \ No newline at end of file diff --git a/local/testing/testdata/CX_Testdata_v1.5.1-AsPlanned.json b/local/testing/testdata/CX_Testdata_v1.5.1-AsPlanned.json new file mode 100644 index 0000000000..dc5507d85f --- /dev/null +++ b/local/testing/testdata/CX_Testdata_v1.5.1-AsPlanned.json @@ -0,0 +1,7166 @@ +{ + "policies": { + "ID 3.0 Trace": { + "@context": { + "odrl": "http://www.w3.org/ns/odrl/2/" + }, + "@type": "PolicyDefinitionRequestDto", + "@id": "id-3.0-trace", + "policy": { + "@type": "Policy", + "odrl:permission": [ + { + "odrl:action": "USE", + "odrl:constraint": { + "@type": "AtomicConstraint", + "odrl:or": [ + { + "@type": "Constraint", + "odrl:leftOperand": "idsc:PURPOSE", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "ID 3.0 Trace" + } + ] + } + } + ] + } + } + }, + "https://catenax.io/schema/TestDataContainer/1.0.0" : [ + { + "catenaXId": "urn:uuid:f0f7879b-6152-4c83-ab58-63644b464f37", + "bpnl": "null", + "PlainObject": [ + { + "BPN_OEM_C": "BPNL00000003AZQP", + "BPN_OEM_A": "BPNL00000003AYRE", + "BPN_OEM_B": "BPNL00000003AVTH", + "BPN_IRS_TEST": "BPNL00000003AWSS", + "BPN_N_TIER_A": "BPNL00000003B0Q0", + "BPN_NATURAL_RUBBER_SITE_A": "BPNS000000000001", + "AUTHOR": "christian.kabelin@ventum.de", + "BPN_NATURAL_RUBBER": "BPNL00000007OR16", + "BPN_OEM_B_SITE_A": "BPNS000000815DMY", + "BPN_OEM_A_SITE_A": "BPNS000004711DMY", + "BPN_OEM_C_SITE_A": "BPNS000001111DMY", + "BPN_TRACEX_A_SITE_A": "BPNS0000000008ZZ", + "BPN_TRACEX_B": "BPNL00000003CNKC", + "BPN_DISMANTLER": "BPNL00000003B6LU", + "BPN_TRACEX_A": "BPNL00000003CML1", + "BPN_TRACEX_B_SITE_A": "BPNS00000008BDFH", + "BPN_TIER_A": "BPNL00000003B2OM", + "BPN_TIER_C": "BPNL00000003CSGV", + "BPN_FARM_A": "BPNL00000003CSGV", + "BPN_TIER_B": "BPNL00000003B5MJ", + "BPN_SUB_TIER_B": "BPNL00000003AXS3", + "BPN_SUB_TIER_A": "BPNL00000003B3NX", + "BPN_SUB_TIER_C": "BPNL00000000BJTL", + "CREATION_DATE": "2023-07-18T06:29:04.245Z", + "BPN_TIER_C_SITE_A": "BPNS00000003CSGV", + "UIDPOOL": "[ 'urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e', 'urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b', 'urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb', 'urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c', 'urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97', 'urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9', 'urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699', 'urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7', 'urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b', 'urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77', 'urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e', 'urn:uuid:4518c080-14fb-4252-b8de-4362d615868d', 'urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc', 'urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301', 'urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323', 'urn:uuid:833c2e75-9c72-488f-8820-173cd99102b1', 'urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8', 'urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d', 'urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a', 'urn:uuid:8031a511-85d8-4568-97f3-9d155127430c', 'urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249', 'urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f', 'urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c', 'urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b', 'urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f', 'urn:uuid:44805117-33b4-4293-a6f9-99316745e77d', 'urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26', 'urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c', 'urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023', 'urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782', 'urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1', 'urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118', 'urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4', 'urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6', 'urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18', 'urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65', 'urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf', 'urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e', 'urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b', 'urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667', 'urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4', 'urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa', 'urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8', 'urn:uuid:63b334a5-3b58-4cae-a9cb-abfda4a3dd2a', 'urn:uuid:00ecef33-0b22-4f08-a758-6685b4030dcf', 'urn:uuid:6c7c6aa0-5e56-4af5-9a43-3a10148b1bee', 'urn:uuid:8d3b08c5-7238-47e2-b069-e5747b8b4f1a', 'urn:uuid:de2fb9d3-4d71-4a2b-a188-bb50be7800ef', 'urn:uuid:cfc0b821-b2d5-4f22-9b8a-a24e86324d12', 'urn:uuid:fabb63c2-89b4-41da-8236-b336c3dfc997', 'urn:uuid:7a12f29c-448e-44de-bfb6-41390a6c21fb', 'urn:uuid:d3e12092-08c2-4721-96b1-5e2d955cd847', 'urn:uuid:993e7d90-572f-4ce3-a0a4-87d4e23142a1', 'urn:uuid:ae3da951-316e-4cb7-b80b-40f03e1e5921', 'urn:uuid:1ca6df3f-f329-44a3-a6f0-39e87962e8d3', 'urn:uuid:fc3531a6-e2fc-4f00-a413-3d8325ba12bd', 'urn:uuid:e50c2fb3-84c3-4f8c-ba1c-c1fe1945ce33', 'urn:uuid:ea3b73d9-317e-4b13-82fe-2541b0bb1bd9', 'urn:uuid:8cd1c3f9-c764-4749-9ffc-9d866045902a', 'urn:uuid:404515f4-e38f-4313-8ea5-28dbe9f1d78e', 'urn:uuid:e6445d55-db0b-40ef-83cb-2ae54d0015b3', 'urn:uuid:c0efef2d-c612-4505-b282-f12edd523ee1', 'urn:uuid:12a0cc80-c8c7-4cbd-a8dd-f12858e086b7', 'urn:uuid:e1aec812-83c1-4b2d-9d40-d09a13fe37d5', 'urn:uuid:980caae1-cd49-4f96-bba7-c5cbc8a4abc5', 'urn:uuid:6d6e992d-0203-45c8-b353-15ddad184781', 'urn:uuid:f3ca42ba-a902-40cc-b96a-296d632e9d4e', 'urn:uuid:6b41b3d1-df40-4664-9aeb-ce0383066cbc', 'urn:uuid:4914af07-bff3-4932-ad1c-2d0b93dc8937', 'urn:uuid:8a56687f-d0ad-4f62-bf02-5718f1d6b91f', 'urn:uuid:819a98e0-f191-4cb8-ad43-512f7be331e3', 'urn:uuid:d12941e5-c7b1-416d-9c08-56042701a2bc', 'urn:uuid:a73d9315-9fcd-4184-a87a-f2d3d83469ef', 'urn:uuid:06be3050-3398-42d7-8b34-6e44714474df', 'urn:uuid:dfd8be9c-9786-4b73-b21a-813e58b77858', 'urn:uuid:6f5da73d-8eaa-45c2-a598-53d4d76eef00', 'urn:uuid:48a71d4e-3e84-457d-a5a4-40e11172461e', 'urn:uuid:f1261d0b-2bf0-4221-9207-501889ee27e8', 'urn:uuid:31ed8e8c-9c0e-4d5b-adbc-dacf5ce4eced', 'urn:uuid:49ac21ba-9f90-4ea0-8a9f-618c2c9d09a0', 'urn:uuid:295e3cdb-228c-4b68-944b-208fe12f364e', 'urn:uuid:7e8fb461-cedf-4a33-803e-98988edf75fa', 'urn:uuid:797f49ea-df99-4c88-bf12-21e8e247538f', 'urn:uuid:5228fa6f-508a-4530-8b82-7de3fea172d9', 'urn:uuid:a16fe36d-794f-4e52-8839-cee33d51ed52', 'urn:uuid:cb5b451d-1f2e-47a2-b023-c3422f6bb35d', 'urn:uuid:5cbb8df7-789b-4ba1-9289-b41ae57471bf', 'urn:uuid:7d4dc411-de27-4512-a8ab-c892e729c3e9', 'urn:uuid:d2f2a37b-3854-46cb-bd84-b386be10f115', 'urn:uuid:9098fd32-f4bc-4e53-8325-5c6fca518912', 'urn:uuid:050e1ee5-094c-453f-9f32-eb6c967e7d45', 'urn:uuid:3f92e710-4771-4d23-ad5a-e55d1ec241e5', 'urn:uuid:f3327b35-cabc-4b23-a578-2cce29f54e49', 'urn:uuid:1101cf44-ade0-44dd-aba3-a0f9af0f956c', 'urn:uuid:33a99e61-eb6a-4253-a3e2-a81adda038e1', 'urn:uuid:df9e24fe-841f-4850-885b-0752af7031eb', 'urn:uuid:932d0301-0edb-468b-9760-ed086058b3f9', 'urn:uuid:d22da17a-700f-41fe-9edc-a1070cdc8f8c', 'urn:uuid:adcbada5-f5d9-4d4e-8587-ac9569badcb7', 'urn:uuid:aa9bf64f-69eb-422e-8d0b-a7e76e2ecfce' ]", + "BPN_TIER_A_SITE_A": "BPNS00000003B2OM", + "BPN_TIER_B_SITE_A": "BPNS00000003B5MJ", + "BPN_SUB_TIER_B_SITE_A": "BPNS00000003AXS3", + "BPN_SUB_TIER_A_SITE_A": "BPNS00000003B3NX", + "BPN_SUB_TIER_C_SITE_A": "BPNS00000000BJTL", + "BPN_FARM_SITE_A": "BPNS000000000DQB", + "BPN_N_TIER_A_SITE_A": "BPNS00000003B0Q0" + } + ] + }, + { + "catenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "bpnl": "BPNL00000003AYRE", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "sites": [ + { + "functionValidUntil": "2025-04-04T04:14:11.000Z", + "catenaXsiteId": "BPNS000004711DMY", + "function": "production", + "functionValidFrom": "2018-03-24T13:38:32.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "vehicle_model_a.asm", + "description": [ + { + "language": "en", + "text": "Vehicle Model A" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e" + ] + }, + "id": "urn:uuid:155b033e-85b2-4dbc-9d04-f992600c42c3" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2017-01-03T07:45:04.000Z", + "validTo": "2029-11-15T11:57:45.000Z" + }, + "catenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "partTypeInformation": { + "manufacturerPartId": "ZX-55", + "classification": "product", + "nameAtManufacturer": "Vehicle Model A" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003AYRE", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B2OM", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B5MJ", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ] + }, + { + "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "bpnl": "BPNL00000003AYRE", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "sites": [ + { + "functionValidUntil": "2027-05-23T09:16:30.000Z", + "catenaXsiteId": "BPNS000004711DMY", + "function": "production", + "functionValidFrom": "2013-11-17T23:59:54.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "oem_a_high_voltage_battery.asm", + "description": [ + { + "language": "en", + "text": "OEM A High Voltage Battery" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" + ] + }, + "id": "urn:uuid:7e620f0f-4218-4b67-a22c-6103efe556fb" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2015-05-18T23:10:44.000Z", + "validTo": "2025-10-23T14:46:01.000Z" + }, + "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "partTypeInformation": { + "manufacturerPartId": "38049661-08", + "classification": "product", + "nameAtManufacturer": "OEM A High Voltage Battery" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "quantity": { + "quantityNumber": 6, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003AYRE", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" + } + ] + }, + { + "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "bpnl": "BPNL00000003AYRE", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "sites": [ + { + "functionValidUntil": "2031-11-21T03:24:27.000Z", + "catenaXsiteId": "BPNS000004711DMY", + "function": "production", + "functionValidFrom": "2020-06-07T07:30:47.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "hv_modul.asm", + "description": [ + { + "language": "en", + "text": "HV Modul" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97" + ] + }, + "id": "urn:uuid:b95ce45c-1377-4285-8917-5f14795cf1ac" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2018-01-25T08:42:58.000Z", + "validTo": "2029-02-10T03:24:30.000Z" + }, + "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "partTypeInformation": { + "manufacturerPartId": "8840838-04", + "classification": "product", + "nameAtManufacturer": "HV Modul" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "quantity": { + "quantityNumber": 10, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003AYRE", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "quantity": { + "quantityNumber": 0.11, + "measurementUnit": "unit:kilogram" + }, + "businessPartner": "BPNL00000003AXS3", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97" + } + ] + }, + { + "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "bpnl": "BPNL00000003AYRE", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "sites": [ + { + "functionValidUntil": "2028-04-27T13:34:20.000Z", + "catenaXsiteId": "BPNS000004711DMY", + "function": "production", + "functionValidFrom": "2017-05-03T09:10:04.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "zb_zelle.asm", + "description": [ + { + "language": "en", + "text": "ZB ZELLE" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9" + ] + }, + "id": "urn:uuid:5956fb59-4154-4282-8406-4e6480879e57" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2016-04-28T20:00:55.000Z", + "validTo": "2027-04-27T00:59:41.000Z" + }, + "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "classification": "product", + "nameAtManufacturer": "ZB ZELLE" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B0Q0", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9" + } + ] + }, + { + "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "bpnl": "BPNL00000003B0Q0", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "sites": [ + { + "functionValidUntil": "2025-03-05T00:33:55.000Z", + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production", + "functionValidFrom": "2019-09-10T14:41:50.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "n_tier_a_cathodematerial.asm", + "description": [ + { + "language": "en", + "text": "N Tier A CathodeMaterial" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699" + ] + }, + "id": "urn:uuid:f80167f2-78e1-4755-a892-3f2dffba317d" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2013-11-24T00:27:33.000Z", + "validTo": "2025-08-16T09:18:35.000Z" + }, + "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "partTypeInformation": { + "manufacturerPartId": "7A047C7-01", + "classification": "product", + "nameAtManufacturer": "N Tier A CathodeMaterial" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "childItems": [] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699" + } + ] + }, + { + "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "bpnl": "BPNL00000003AXS3", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "sites": [ + { + "functionValidUntil": "2031-10-20T22:34:48.000Z", + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production", + "functionValidFrom": "2013-12-05T14:02:28.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "sub_tier_b_sealant.asm", + "description": [ + { + "language": "en", + "text": "Sub Tier B Sealant" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323" + ] + }, + "id": "urn:uuid:691f8434-9bcc-4d1e-90c8-c9d23ebc9fd6" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2017-09-12T21:34:41.000Z", + "validTo": "2030-06-04T20:52:15.000Z" + }, + "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "partTypeInformation": { + "manufacturerPartId": "9A047C7-01", + "classification": "product", + "nameAtManufacturer": "Sub Tier B Sealant" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "childItems": [] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323" + } + ] + }, + { + "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "bpnl": "BPNL00000003B2OM", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "sites": [ + { + "functionValidUntil": "2031-10-27T21:24:04.000Z", + "catenaXsiteId": "BPNS00000003B2OM", + "function": "production", + "functionValidFrom": "2016-01-29T21:44:37.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tier_a_gearbox.asm", + "description": [ + { + "language": "en", + "text": "Tier A Gearbox" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" + ] + }, + "id": "urn:uuid:9662b9a3-3fe8-4afc-8d26-f47b48e193df" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tier_a_gearbox.asm", + "description": [ + { + "language": "en", + "text": "Tier A Gearbox" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" + ] + }, + "id": "urn:uuid:98fc8794-eafe-475e-bd05-0fb275739cb2" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2017-07-03T05:23:01.000Z", + "validTo": "2032-09-25T10:26:27.000Z" + }, + "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "partTypeInformation": { + "manufacturerPartId": "32494586-73", + "classification": "product", + "nameAtManufacturer": "Tier A Gearbox" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B3NX", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B0Q0", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" + } + ] + }, + { + "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "bpnl": "BPNL00000003B3NX", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "sites": [ + { + "functionValidUntil": "2031-04-16T11:07:09.000Z", + "catenaXsiteId": "BPNS00000003B3NX", + "function": "production", + "functionValidFrom": "2013-12-07T09:33:50.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "sub_tier_a_sensor.asm", + "description": [ + { + "language": "en", + "text": "Sub Tier A Sensor" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" + ] + }, + "id": "urn:uuid:e6e20f07-6fc4-459c-92df-372a5ccbc1fd" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "sub_tier_a_sensor.asm", + "description": [ + { + "language": "en", + "text": "Sub Tier A Sensor" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" + ] + }, + "id": "urn:uuid:ae6b11ac-c7eb-4197-91a7-6549ff35d7e5" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "sub_tier_a_sensor.asm", + "description": [ + { + "language": "en", + "text": "Sub Tier A Sensor" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" + ] + }, + "id": "urn:uuid:c7ffb49f-83ff-45b4-88b4-0028c96ea1d6" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "sub_tier_a_sensor.asm", + "description": [ + { + "language": "en", + "text": "Sub Tier A Sensor" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" + ] + }, + "id": "urn:uuid:95a3fcd9-ac09-49d9-a38f-5072f109dd9c" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2013-06-18T03:47:22.000Z", + "validTo": "2030-12-31T23:33:25.000Z" + }, + "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "partTypeInformation": { + "manufacturerPartId": "6740244-02", + "classification": "product", + "nameAtManufacturer": "Sub Tier A Sensor" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B0Q0", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" + } + ] + }, + { + "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "bpnl": "BPNL00000003B0Q0", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "sites": [ + { + "functionValidUntil": "2024-09-23T14:45:04.000Z", + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production", + "functionValidFrom": "2020-06-20T01:19:36.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "n_tier_a_ntier_product.asm", + "description": [ + { + "language": "en", + "text": "N Tier A NTier Product" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" + ] + }, + "id": "urn:uuid:58be412e-0024-417f-adcd-a2235435eaeb" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "n_tier_a_ntier_product.asm", + "description": [ + { + "language": "en", + "text": "N Tier A NTier Product" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" + ] + }, + "id": "urn:uuid:11dea964-4f0a-4042-bae2-3e6500111a95" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "n_tier_a_ntier_product.asm", + "description": [ + { + "language": "en", + "text": "N Tier A NTier Product" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" + ] + }, + "id": "urn:uuid:b6ac0d5b-6a41-4d52-bfbe-19009dc97579" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "n_tier_a_ntier_product.asm", + "description": [ + { + "language": "en", + "text": "N Tier A NTier Product" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" + ] + }, + "id": "urn:uuid:428443ba-c9fe-4b23-9e7b-62b8a6b67878" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2019-01-02T09:42:18.000Z", + "validTo": "2031-05-02T13:45:12.000Z" + }, + "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "partTypeInformation": { + "manufacturerPartId": "7A047KK-01", + "classification": "product", + "nameAtManufacturer": "N Tier A NTier Product" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "childItems": [] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" + } + ] + }, + { + "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "bpnl": "BPNL00000003B0Q0", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "sites": [ + { + "functionValidUntil": "2030-01-29T19:43:54.000Z", + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production", + "functionValidFrom": "2015-11-17T18:35:23.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "n_tier_a_plastics.asm", + "description": [ + { + "language": "en", + "text": "N Tier A Plastics" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" + ] + }, + "id": "urn:uuid:c4149abd-13e5-43ab-b058-e4b121d2d51e" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "n_tier_a_plastics.asm", + "description": [ + { + "language": "en", + "text": "N Tier A Plastics" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" + ] + }, + "id": "urn:uuid:0eaf02c6-97a7-473f-b479-49a1a774a4db" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2015-01-23T16:24:59.000Z", + "validTo": "2031-05-04T12:01:38.000Z" + }, + "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "partTypeInformation": { + "manufacturerPartId": "7A987KK-04", + "classification": "product", + "nameAtManufacturer": "N Tier A Plastics" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "childItems": [] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" + } + ] + }, + { + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "bpnl": "BPNL00000003B5MJ", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "sites": [ + { + "functionValidUntil": "2028-09-29T13:56:09.000Z", + "catenaXsiteId": "BPNS00000003B5MJ", + "function": "production", + "functionValidFrom": "2017-01-30T12:55:30.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tier_b_ecu1.asm", + "description": [ + { + "language": "en", + "text": "Tier B ECU1" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" + ] + }, + "id": "urn:uuid:7759e2b6-d253-430f-bceb-be6e6fd7abee" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tier_b_ecu1.asm", + "description": [ + { + "language": "en", + "text": "Tier B ECU1" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" + ] + }, + "id": "urn:uuid:ea138238-048f-4294-8065-f31598808040" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2016-04-24T08:26:56.000Z", + "validTo": "2031-12-17T23:55:04.000Z" + }, + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "partTypeInformation": { + "manufacturerPartId": "ZX-55", + "classification": "product", + "nameAtManufacturer": "Tier B ECU1" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B3NX", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "quantity": { + "quantityNumber": 0.3301, + "measurementUnit": "unit:kilogram" + }, + "businessPartner": "BPNL00000003AXS3", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" + } + ] + }, + { + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "bpnl": "BPNL00000003AXS3", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "sites": [ + { + "functionValidUntil": "2032-01-21T11:22:57.000Z", + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production", + "functionValidFrom": "2017-05-27T13:54:13.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "sub_tier_b_glue.asm", + "description": [ + { + "language": "en", + "text": "Sub Tier B Glue" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" + ] + }, + "id": "urn:uuid:aa71a26f-5295-48af-bc7b-c585c22e3474" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "sub_tier_b_glue.asm", + "description": [ + { + "language": "en", + "text": "Sub Tier B Glue" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" + ] + }, + "id": "urn:uuid:dc047ca9-d272-4e57-8771-326302299d7c" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "sub_tier_b_glue.asm", + "description": [ + { + "language": "en", + "text": "Sub Tier B Glue" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" + ] + }, + "id": "urn:uuid:1636883e-1e9d-4999-ab03-9e1c8ad455c3" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2019-08-17T14:14:30.000Z", + "validTo": "2032-08-30T04:32:28.000Z" + }, + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "partTypeInformation": { + "manufacturerPartId": "6775244-06", + "classification": "product", + "nameAtManufacturer": "Sub Tier B Glue" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "childItems": [] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" + } + ] + }, + { + "catenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "bpnl": "BPNL00000003AVTH", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "sites": [ + { + "functionValidUntil": "2030-05-16T19:21:46.000Z", + "catenaXsiteId": "BPNS000000815DMY", + "function": "production", + "functionValidFrom": "2019-10-17T03:16:09.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "vehicle_model_b.asm", + "description": [ + { + "language": "en", + "text": "Vehicle Model B" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b" + ] + }, + "id": "urn:uuid:8dc7f1c3-abd3-4c0c-87e2-e5530dd5f43f" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2016-04-09T20:41:14.000Z", + "validTo": "2023-12-09T04:46:33.000Z" + }, + "catenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "partTypeInformation": { + "manufacturerPartId": "FJ-87", + "classification": "product", + "nameAtManufacturer": "Vehicle Model B" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B2OM", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B5MJ", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL50096894aNXY", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ] + }, + { + "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "bpnl": "BPNL00000003B2OM", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "sites": [ + { + "functionValidUntil": "2028-02-14T21:42:45.000Z", + "catenaXsiteId": "BPNS00000003B2OM", + "function": "production", + "functionValidFrom": "2015-07-21T06:33:16.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tire_model_a.asm", + "description": [ + { + "language": "en", + "text": "Tire Model A" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" + ] + }, + "id": "urn:uuid:0f45fac0-6ba4-42f5-a11f-b5ed429b899e" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tire_model_a.asm", + "description": [ + { + "language": "en", + "text": "Tire Model A" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" + ] + }, + "id": "urn:uuid:85ed7f71-1e18-4352-810b-c2619d94dc05" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2019-11-02T11:14:15.000Z", + "validTo": "2024-07-17T02:07:07.000Z" + }, + "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "partTypeInformation": { + "manufacturerPartId": "123564887-01", + "classification": "product", + "nameAtManufacturer": "Tire Model A" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "quantity": { + "quantityNumber": 1580, + "measurementUnit": "unit:gram" + }, + "businessPartner": "BPNL50096894aNXY", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" + } + ] + }, + { + "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "bpnl": "BPNL00000007OR16", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "sites": [ + { + "functionValidUntil": "2026-08-04T05:21:07.000Z", + "catenaXsiteId": "BPNS000000000001", + "function": "production", + "functionValidFrom": "2016-04-24T03:31:23.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "natural_rubber_product(40kg_blocks).asm", + "description": [ + { + "language": "en", + "text": "Natural Rubber Product(40KG blocks)" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d" + ] + }, + "id": "urn:uuid:2c01caab-b8fd-49e1-b002-59d6b6ccb011" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "natural_rubber_product(40kg_blocks).asm", + "description": [ + { + "language": "en", + "text": "Natural Rubber Product(40KG blocks)" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d" + ] + }, + "id": "urn:uuid:91a370b7-cf9d-4cc7-a63f-d928d0bd5921" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2017-04-29T01:48:37.000Z", + "validTo": "2029-08-26T00:42:55.000Z" + }, + "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "partTypeInformation": { + "manufacturerPartId": "9953421-03", + "classification": "product", + "nameAtManufacturer": "Natural Rubber Product(40KG blocks)" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL50096894aNXY", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d" + } + ] + }, + { + "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "bpnl": "BPNL00000003CSGV", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "sites": [ + { + "functionValidUntil": "2032-02-01T04:04:54.000Z", + "catenaXsiteId": "BPNS000000000DQB", + "function": "production", + "functionValidFrom": "2013-09-19T12:23:48.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "natural_rubber.asm", + "description": [ + { + "language": "en", + "text": "Natural Rubber" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a" + ] + }, + "id": "urn:uuid:b152d1de-b56b-4b17-b3e6-04cbb3cf359d" + }, + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "natural_rubber.asm", + "description": [ + { + "language": "en", + "text": "Natural Rubber" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a" + ] + }, + "id": "urn:uuid:35d9b2c3-24d1-428f-83f1-657ce87883b1" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2014-02-07T16:56:02.000Z", + "validTo": "2029-08-26T11:05:18.000Z" + }, + "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "partTypeInformation": { + "manufacturerPartId": "A26581-11", + "classification": "product", + "nameAtManufacturer": "Natural Rubber" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "childItems": [] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a" + } + ] + }, + { + "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "bpnl": "BPNL00000003AZQP", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "sites": [ + { + "functionValidUntil": "2026-01-17T18:49:55.000Z", + "catenaXsiteId": "BPNS000001111DMY", + "function": "production", + "functionValidFrom": "2013-02-25T01:50:28.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "vehicle_model_c.asm", + "description": [ + { + "language": "en", + "text": "Vehicle Model C" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb" + ] + }, + "id": "urn:uuid:d961580e-3c2f-4d63-81cc-fea1369ec6b8" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2018-08-15T15:18:04.000Z", + "validTo": "2028-05-14T00:23:55.000Z" + }, + "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "partTypeInformation": { + "manufacturerPartId": "XK-34", + "classification": "product", + "nameAtManufacturer": "Vehicle Model C" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B5MJ", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL50096894aNXY", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ] + }, + { + "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "bpnl": "BPNL00000003B5MJ", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "sites": [ + { + "functionValidUntil": "2032-01-01T03:15:36.000Z", + "catenaXsiteId": "BPNS00000003B5MJ", + "function": "production", + "functionValidFrom": "2020-02-16T13:26:37.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tier_b_ecu2.asm", + "description": [ + { + "language": "en", + "text": "Tier B ECU2" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77" + ] + }, + "id": "urn:uuid:d0f3d77a-74ae-4bbd-aea7-7184a29d595f" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2018-09-16T00:07:10.000Z", + "validTo": "2032-01-10T15:26:52.000Z" + }, + "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "partTypeInformation": { + "manufacturerPartId": "39478586-36", + "classification": "product", + "nameAtManufacturer": "Tier B ECU2" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003AXS3", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77" + } + ] + }, + { + "catenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "bpnl": "BPNL00000003CML1", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "sites": [ + { + "functionValidUntil": "2030-06-16T20:40:24.000Z", + "catenaXsiteId": "BPNS0000000008ZZ", + "function": "production", + "functionValidFrom": "2019-11-03T06:03:05.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "vehicle_model_d.asm", + "description": [ + { + "language": "en", + "text": "Vehicle Model D" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c" + ] + }, + "id": "urn:uuid:ed971a88-82e1-4149-a063-0778c8dc2b59" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2016-04-06T19:14:12.000Z", + "validTo": "2025-11-21T20:38:09.000Z" + }, + "catenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "partTypeInformation": { + "manufacturerPartId": "ZZ-88", + "classification": "product", + "nameAtManufacturer": "Vehicle Model D" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003AZQP", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003CNKC", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003AYRE", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ] + }, + { + "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "bpnl": "BPNL00000003AZQP", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "sites": [ + { + "functionValidUntil": "2027-10-07T13:45:14.000Z", + "catenaXsiteId": "BPNS000001111DMY", + "function": "production", + "functionValidFrom": "2013-02-12T19:48:21.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "oem_c_engine.asm", + "description": [ + { + "language": "en", + "text": "OEM C Engine" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249" + ] + }, + "id": "urn:uuid:c23579db-e6a8-420f-a6cd-e9226ba19e65" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2018-08-27T07:23:22.000Z", + "validTo": "2027-12-30T10:04:41.000Z" + }, + "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "partTypeInformation": { + "manufacturerPartId": "59878587-80", + "classification": "product", + "nameAtManufacturer": "OEM C Engine" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003CNKC", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003B2OM", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003CSGV", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003CML1", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249" + } + ] + }, + { + "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "bpnl": "BPNL00000003CNKC", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "sites": [ + { + "functionValidUntil": "2026-02-25T19:02:17.000Z", + "catenaXsiteId": "BPNS00000008BDFH", + "function": "production", + "functionValidFrom": "2015-11-23T12:41:12.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tracex_b_cylinder_head.asm", + "description": [ + { + "language": "en", + "text": "TRACEX B Cylinder Head" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f" + ] + }, + "id": "urn:uuid:3fb4ce1a-4af8-487b-9248-eb8bf3ec63b7" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2014-01-15T06:00:28.000Z", + "validTo": "2027-04-29T05:32:27.000Z" + }, + "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "partTypeInformation": { + "manufacturerPartId": "9760254-64", + "classification": "product", + "nameAtManufacturer": "TRACEX B Cylinder Head" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003AZQP", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003CSGV", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003CML1", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f" + } + ] + }, + { + "catenaXId": "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "bpnl": "BPNL00000003AZQP", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "sites": [ + { + "functionValidUntil": "2028-11-03T02:13:26.000Z", + "catenaXsiteId": "BPNS000001111DMY", + "function": "production", + "functionValidFrom": "2014-09-13T07:40:34.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "oem_c_rod.asm", + "description": [ + { + "language": "en", + "text": "OEM C Rod" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f" + ] + }, + "id": "urn:uuid:d410118b-0ad3-4434-be4e-ef6f837f141c" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2013-10-03T09:35:17.000Z", + "validTo": "2025-07-09T17:51:19.000Z" + }, + "catenaXId": "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "partTypeInformation": { + "manufacturerPartId": "7B147D8-19", + "classification": "product", + "nameAtManufacturer": "OEM C Rod" + } + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f" + } + ] + }, + { + "catenaXId": "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "bpnl": "BPNL00000003CSGV", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "sites": [ + { + "functionValidUntil": "2027-11-24T01:03:55.000Z", + "catenaXsiteId": "BPNS00000003CSGV", + "function": "production", + "functionValidFrom": "2020-11-18T01:04:50.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tier_c_crankshaft.asm", + "description": [ + { + "language": "en", + "text": "Tier C Crankshaft" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d" + ] + }, + "id": "urn:uuid:6963f76e-9cda-4550-a5aa-6e60fe0d263e" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2020-01-04T04:37:59.000Z", + "validTo": "2025-08-18T17:32:42.000Z" + }, + "catenaXId": "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "partTypeInformation": { + "manufacturerPartId": "6X247E5-99", + "classification": "product", + "nameAtManufacturer": "Tier C Crankshaft" + } + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d" + } + ] + }, + { + "catenaXId": "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "bpnl": "BPNL00000003CML1", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "sites": [ + { + "functionValidUntil": "2031-08-01T05:53:19.000Z", + "catenaXsiteId": "BPNS0000000008ZZ", + "function": "production", + "functionValidFrom": "2017-11-23T23:36:58.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tracex_a_crank.asm", + "description": [ + { + "language": "en", + "text": "TraceX A Crank" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" + ] + }, + "id": "urn:uuid:3823982b-2e27-41b9-b0b2-deed131a0c7b" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2019-02-27T21:27:13.000Z", + "validTo": "2024-12-04T11:05:44.000Z" + }, + "catenaXId": "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "partTypeInformation": { + "manufacturerPartId": "2Z247F8-70", + "classification": "product", + "nameAtManufacturer": "TraceX A Crank" + } + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" + } + ] + }, + { + "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "bpnl": "BPNL00000003B2OM", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "sites": [ + { + "functionValidUntil": "2029-04-15T20:04:26.000Z", + "catenaXsiteId": "BPNS00000003B2OM", + "function": "production", + "functionValidFrom": "2013-02-12T21:29:40.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tier_a_plunger.asm", + "description": [ + { + "language": "en", + "text": "Tier A Plunger" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c" + ] + }, + "id": "urn:uuid:e81ac240-d02f-40c6-b714-2727a013fc6e" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2012-12-28T09:49:52.000Z", + "validTo": "2026-06-29T00:50:06.000Z" + }, + "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "partTypeInformation": { + "manufacturerPartId": "6260254-43", + "classification": "product", + "nameAtManufacturer": "Tier A Plunger" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "childItems": [] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c" + } + ] + }, + { + "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "bpnl": "BPNL00000003CSGV", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "sites": [ + { + "functionValidUntil": "2031-02-28T07:58:42.000Z", + "catenaXsiteId": "BPN", + "function": "production", + "functionValidFrom": "2016-01-19T21:23:47.000Z", + "catenaXSiteId": "BPNS00000003CSGV" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tier_c_piston_rod.asm", + "description": [ + { + "language": "en", + "text": "Tier C Piston Rod" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b" + ] + }, + "id": "urn:uuid:d2e2d6e3-0497-4a8a-92b0-57e1164be04e" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2014-02-24T21:16:29.000Z", + "validTo": "2027-11-04T22:27:44.000Z" + }, + "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "partTypeInformation": { + "manufacturerPartId": "5760234-23", + "classification": "product", + "nameAtManufacturer": "Tier C Piston Rod" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "childItems": [] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b" + } + ] + }, + { + "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "bpnl": "BPNL00000003CML1", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "sites": [ + { + "functionValidUntil": "2030-05-01T13:22:07.000Z", + "catenaXsiteId": "BPNS0000000008ZZ", + "function": "production", + "functionValidFrom": "2015-07-04T11:51:56.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tracex_a_cylinder.asm", + "description": [ + { + "language": "en", + "text": "TRACEX A Cylinder" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c" + ] + }, + "id": "urn:uuid:f1f7b01a-d9ac-47dc-b870-30a805faa8a6" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2017-01-15T05:36:21.000Z", + "validTo": "2028-08-11T09:34:04.000Z" + }, + "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "partTypeInformation": { + "manufacturerPartId": "8760254-76", + "classification": "product", + "nameAtManufacturer": "TRACEX A Cylinder" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003CNKC", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003AYRE", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c" + } + ] + }, + { + "catenaXId": "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "bpnl": "BPNL00000003CNKC", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "sites": [ + { + "functionValidUntil": "2028-03-11T11:20:13.000Z", + "catenaXsiteId": "BPNS00000008BDFH", + "function": "production", + "functionValidFrom": "2020-11-29T01:27:22.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tracex_b_seal.asm", + "description": [ + { + "language": "en", + "text": "TRACEX B Seal" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023" + ] + }, + "id": "urn:uuid:75ff878c-75dc-44e1-928a-8076e28a0968" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2016-04-08T20:37:55.000Z", + "validTo": "2028-09-21T22:17:46.000Z" + }, + "catenaXId": "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "partTypeInformation": { + "manufacturerPartId": "7C147E8-87", + "classification": "product", + "nameAtManufacturer": "TRACEX B Seal" + } + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023" + } + ] + }, + { + "catenaXId": "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "bpnl": "BPNL00000003AYRE", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "sites": [ + { + "functionValidUntil": "2030-03-08T23:14:57.000Z", + "catenaXsiteId": "BPNS000004711DMY", + "function": "production", + "functionValidFrom": "2019-05-25T08:05:01.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "oem_a_closure.asm", + "description": [ + { + "language": "en", + "text": "OEM A Closure" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782" + ] + }, + "id": "urn:uuid:4b07da0f-9a44-4c2d-8487-680158fc030a" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2019-02-24T22:59:16.000Z", + "validTo": "2031-07-26T08:43:52.000Z" + }, + "catenaXId": "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "partTypeInformation": { + "manufacturerPartId": "9C147E8-67", + "classification": "product", + "nameAtManufacturer": "OEM A Closure" + } + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782" + } + ] + }, + { + "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "bpnl": "BPNL00000003CNKC", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "sites": [ + { + "functionValidUntil": "2025-04-26T02:43:47.000Z", + "catenaXsiteId": "BPNS00000008BDFH", + "function": "production", + "functionValidFrom": "2015-09-07T04:57:46.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tracex_b_door_front_right.asm", + "description": [ + { + "language": "en", + "text": "TraceX B Door Front Right" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1" + ] + }, + "id": "urn:uuid:b8e6551c-8a37-488e-811c-67125b7e6a1c" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2018-09-13T17:18:47.000Z", + "validTo": "2031-09-24T15:48:42.000Z" + }, + "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "partTypeInformation": { + "manufacturerPartId": "88878587-67", + "classification": "product", + "nameAtManufacturer": "TraceX B Door Front Right" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003CML1", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1" + } + ] + }, + { + "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "bpnl": "BPNL00000003CML1", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "sites": [ + { + "functionValidUntil": "2028-03-05T08:18:53.000Z", + "catenaXsiteId": "BPNS0000000008ZZ", + "function": "production", + "functionValidFrom": "2017-06-04T15:47:53.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tracex_a_door-key.asm", + "description": [ + { + "language": "en", + "text": "TRACEX A Door-Key" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118" + ] + }, + "id": "urn:uuid:4d788bc9-78c2-4304-b39d-3c43100292d3" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2018-09-12T16:16:46.000Z", + "validTo": "2032-01-09T19:03:36.000Z" + }, + "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "partTypeInformation": { + "manufacturerPartId": "6760255-12", + "classification": "product", + "nameAtManufacturer": "TRACEX A Door-Key" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003AZQP", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118" + } + ] + }, + { + "catenaXId": "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "bpnl": "BPNL00000003AZQP", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "sites": [ + { + "functionValidUntil": "2024-08-25T14:30:09.000Z", + "catenaXsiteId": "BPNS000001111DMY", + "function": "production", + "functionValidFrom": "2014-02-17T01:07:03.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "oem_c_key_fund.asm", + "description": [ + { + "language": "en", + "text": "OEM C Key fund" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4" + ] + }, + "id": "urn:uuid:fd4cb94f-af12-4cf9-b8d1-8d51637089b4" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2014-09-18T17:01:09.000Z", + "validTo": "2027-08-10T04:03:15.000Z" + }, + "catenaXId": "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "partTypeInformation": { + "manufacturerPartId": "1D147E8-90", + "classification": "product", + "nameAtManufacturer": "OEM C Key fund" + } + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4" + } + ] + }, + { + "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "bpnl": "BPNL00000003AYRE", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "sites": [ + { + "functionValidUntil": "2025-08-09T03:55:35.000Z", + "catenaXsiteId": "BPNS000004711DMY", + "function": "production", + "functionValidFrom": "2012-12-28T20:49:30.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "oem_a_car_body.asm", + "description": [ + { + "language": "en", + "text": "OEM A Car Body" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6" + ] + }, + "id": "urn:uuid:cd3cb6f1-871f-4be1-a6ad-f8152ea28baf" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2020-03-15T07:49:00.000Z", + "validTo": "2026-07-02T06:20:58.000Z" + }, + "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "partTypeInformation": { + "manufacturerPartId": "48878587-88", + "classification": "product", + "nameAtManufacturer": "OEM A Car Body" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "childItems": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:17:29.187+01:00", + "validTo": "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "quantity": { + "quantityNumber": 1, + "measurementUnit": "unit:litre" + }, + "businessPartner": "BPNL00000003CNKC", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6" + } + ] + }, + { + "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "bpnl": "BPNL00000003CNKC", + "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ + { + "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "sites": [ + { + "functionValidUntil": "2031-03-08T00:39:03.000Z", + "catenaXsiteId": "BPNS00000008BDFH", + "function": "production", + "functionValidFrom": "2014-09-23T03:50:26.000Z" + } + ] + } + ], + "urn:bamm:io.catenax.aas:1.0.0#AAS": [ + { + "specificAssetId": [ + { + "value": "0000000251", + "key": "http://pwc.t-systems.com/datamodel/common" + }, + { + "value": "25054146@nis11c130.epdm-d.edm.dsh.de", + "key": "urn:VR:wt.part.WTPart#" + } + ], + "idShort": "tracex_b_doors.asm", + "description": [ + { + "language": "en", + "text": "TRACEX B Doors" + } + ], + "submodelDescriptors": [ + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "singleLevelBomAsPlanned", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, + { + "semanticId": [ + { + "keys": [ + { + "type": "GlobalReference", + "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } + ], + "type": "ExternalReference" + } + ], + "endpoints": [ + { + "interface": "SUBMODEL-3.0", + "protocolInformation": { + "subprotocolBodyEncoding": "plain", + "subprotocol": "IDS", + "securityAttributes": [ + { + "type": "NONE", + "value": "NONE", + "key": "NONE" + } + ], + "endpointProtocolVersion": [ + "1.1" + ], + "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol": "HTTP" + } + } + ], + "idShort": "partSiteInformation", + "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } + ], + "globalAssetId": { + "value": [ + "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18" + ] + }, + "id": "urn:uuid:02d51ab4-0c33-4f42-b8fb-34f8ec4eae02" + } + ], + "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ + { + "validityPeriod": { + "validFrom": "2018-11-12T10:57:41.000Z", + "validTo": "2032-11-28T15:35:33.000Z" + }, + "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "partTypeInformation": { + "manufacturerPartId": "5760244-23", + "classification": "product", + "nameAtManufacturer": "TRACEX B Doors" + } + } + ], + "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ + { + "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "childItems": [] + } + ], + "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ + { + "parentParts": [ + { + "validityPeriod": { + "validFrom": "2023-03-21T08:47:14.438+01:00", + "validTo": "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity": { + "quantityNumber": 2.5, + "measurementUnit": "unit:litre" + }, + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18" + } + ] + } +] +} diff --git a/local/testing/testdata/CX_Testdata_v1.5.3-AsBuilt.json b/local/testing/testdata/CX_Testdata_v1.5.3-AsBuilt.json new file mode 100644 index 0000000000..7b6d8ef910 --- /dev/null +++ b/local/testing/testdata/CX_Testdata_v1.5.3-AsBuilt.json @@ -0,0 +1,798272 @@ +{ + "policies": { + "ID 3.0 Trace": { + "@context": { + "odrl": "http://www.w3.org/ns/odrl/2/" + }, + "@type": "PolicyDefinitionRequestDto", + "@id": "id-3.0-trace", + "policy": { + "@type": "Policy", + "odrl:permission": [ + { + "odrl:action": "USE", + "odrl:constraint": { + "@type": "AtomicConstraint", + "odrl:or": [ + { + "@type": "Constraint", + "odrl:leftOperand": "idsc:PURPOSE", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "ID 3.0 Trace" + } + ] + } + } + ] + } + } + }, + "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { + "catenaXId" : "urn:uuid:695ee342-8dcf-488d-9452-a9b859285a32", + "bpnl" : "null", + "PlainObject" : [ { + "BPN_OEM_C" : "BPNL00000003AZQP", + "BPN_OEM_A" : "BPNL00000003AYRE", + "BPN_OEM_B" : "BPNL00000003AVTH", + "BPN_IRS_TEST" : "BPNL00000003AWSS", + "BPN_N_TIER_A" : "BPNL00000003B0Q0", + "BATCH_SEALANT_1" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "BATCH_SEALANT_2" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "AUTHOR" : "T-Systems", + "BATCH_GLUE_2" : "urn:uuid:b181bb0b-801a-427f-8e06-ad2a1487b8af", + "BATCH_GLUE_1" : "urn:uuid:3ab2f41c-20b7-4498-904e-8b098c4f90ab", + "BPN_TRACEX_A_SITE_A" : "BPNS0000000008ZZ", + "BPN_TRACEX_B" : "BPNL00000003CNKC", + "BPN_DISMANTLER" : "BPNL00000003B6LU", + "BPN_TRACEX_A" : "BPNL00000003CML1", + "BPN_TRACEX_B_SITE_A" : "BPNS00000008BDFH", + "BPN_TIER_A" : "BPNL00000003B2OM", + "BPN_TIER_C" : "BPNL00000003CSGV", + "BPN_TIER_B" : "BPNL00000003B5MJ", + "BPN_SUB_TIER_B" : "BPNL00000003AXS3", + "BPN_SUB_TIER_A" : "BPNL00000003B3NX", + "BATCH_CATHODE_1" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "BATCH_CATHODE_2" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "BPN_SUB_TIER_C" : "BPNL00000000BJTL", + "CREATION_DATE" : "2023-07-24T12:42:50.804Z", + "BATCH_POLYAMID_1" : "urn:uuid:fb14bbbf-d14e-4d5a-8ac3-dd583adf6eb1", + "BATCH_POLYAMID_2" : "urn:uuid:94ce30ee-0c90-41cd-a21a-e72c5039295f" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "engine" : { + "size" : 2998, + "power" : 154 + }, + "emptyWeight" : 1.79, + "fuel" : "petrol", + "vehicleModel" : "Vehicle Combustion", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "childItems" : [ { + "catenaXId" : "urn:uuid:b98b10d1-ea70-47f9-b30c-520f12594519", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8ebaba35-4210-4ae8-aaef-8967610ccbc5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2fa58d7b-ec4b-4647-96d6-932cc62c596d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9e3287f0-0449-4cec-bf92-1c8ddafd1dce", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7697dd1a-a013-4daa-a266-b63e8b295a9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:978aa1e7-89e9-4f4a-a07d-945bff5c9ac8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ff194113-c981-4ff1-bd3e-39bdef41f010", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ba7b2ab8-707c-4fb6-af6a-2a1ef1d75337", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:258cb46c-f178-462a-9e6b-da58be4ac64b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b9e520b1-8828-4252-9497-c5702af7d91a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:230ff3d7-155e-478f-a05e-b3b21cb443ba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:38578eb7-3dd5-4b8c-bdfb-a9c0bb725e09", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:67a51fd6-fec4-4101-abee-20d4014f5945", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e39c0c6e-bd76-4a2e-8187-e5357ba0b00e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7c175ce-00a2-4650-bbae-b6db2669113c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7d59adfd-589e-4a97-9348-6ec48fd6aabf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6789d12f-44fb-4616-bda4-343499e3aee6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:62a1673c-ec20-40bf-9c63-59e5853832a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0d50b9c8-a354-4155-ab02-d58b22852512", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8fd95749-ee76-450b-b737-1d699d1f29d4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0f19d6ea-7042-4cf3-9b52-2e532ff96089", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e444388d-76ea-446a-8da3-96c7fd711bb7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c903f029-860e-4cd5-ad3d-ea3ec4ab587b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:47b5f5ed-1bf6-46ba-899e-c19f7f62e682", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:48299545-a673-467a-a341-f4337dd1ae00", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:075f1457-728a-4fc0-b7d9-6fc088d5ba00", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5a66c091-5082-4047-b775-3d712a52c632", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4123cd33-ab15-421d-a950-a7519bbaf37b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7c548fd4-6428-42e5-88cb-2088bccf5c84", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "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" + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "CV-87", + "key" : "manufacturerPartId" + }, { + "value" : "OMCOFCRMXMBASAFZY", + "key" : "partInstanceId" + }, { + "value" : "OMCOFCRMXMBASAFZY", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2020-01-03T13:51:32.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "partTypeInformation" : { + "manufacturerPartId" : "CV-87", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCOFCRMXMBASAFZY", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "CV-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_combustion.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Combustion" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, + "id" : "urn:uuid:372b1177-6821-496c-9dbe-63c4971dbefe" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 45, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 15, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 48, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 32, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 47, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 66, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 85, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 62, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 33, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 46, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b98b10d1-ea70-47f9-b30c-520f12594519", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b98b10d1-ea70-47f9-b30c-520f12594519" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-795540775012790097100107", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b98b10d1-ea70-47f9-b30c-520f12594519", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-795540775012790097100107", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b98b10d1-ea70-47f9-b30c-520f12594519" ] + }, + "id" : "urn:uuid:cd4dbeb5-1e5a-4b30-8cb4-7912ab48c7f6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-240132148053652213207640", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-240132148053652213207640", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a" ] + }, + "id" : "urn:uuid:349f57d7-d67e-4063-8861-e50da8a78d7d" + } ] + }, { + "catenaXId" : "urn:uuid:8ebaba35-4210-4ae8-aaef-8967610ccbc5", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8ebaba35-4210-4ae8-aaef-8967610ccbc5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-862841841782729376527348", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8ebaba35-4210-4ae8-aaef-8967610ccbc5", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-862841841782729376527348", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8ebaba35-4210-4ae8-aaef-8967610ccbc5" ] + }, + "id" : "urn:uuid:39306541-5dcc-4cc5-b25c-8459df2c19cc" + } ] + }, { + "catenaXId" : "urn:uuid:2fa58d7b-ec4b-4647-96d6-932cc62c596d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2fa58d7b-ec4b-4647-96d6-932cc62c596d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-037176178490688727658421", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2fa58d7b-ec4b-4647-96d6-932cc62c596d", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-037176178490688727658421", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2fa58d7b-ec4b-4647-96d6-932cc62c596d" ] + }, + "id" : "urn:uuid:44c59084-b57c-4d03-8095-8cbf76a00103" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89", + "childItems" : [ { + "catenaXId" : "urn:uuid:f41dae33-1eab-48c5-89d7-f36f71bb4e5a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-566044220489769395312593", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-566044220489769395312593", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89" ] + }, + "id" : "urn:uuid:eec40d01-79e3-43ae-83fc-5d3b84989c8c" + } ] + }, { + "catenaXId" : "urn:uuid:f41dae33-1eab-48c5-89d7-f36f71bb4e5a", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89", + "businessPartner" : "BPNL00000003AVTH", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f41dae33-1eab-48c5-89d7-f36f71bb4e5a" + } ], + "urn:bamm:io.catenax.single_level_bom_as_specified:1.0.0#SingleLevelBomAsSpecified": [ { + "catenaXId": "urn:uuid:f41dae33-1eab-48c5-89d7-f36f71bb4e5a", + "childParts": [ { + "childPartsCategory": "e.g. vehicle, winter wheels, bicycle rack", + "part": [ { + "ownerPartId": "22782277-50", + "partVersion": "05", + "partQuantity": { + "quantityNumber": 350.0, + "measurementUnit": "kW" + }, + "partDescription": "The steering wheel is nice and round", + "partClassification": [ { + "value": "STEEWHL", + "key": "BMW:PartFamily" + } ], + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } ], + "childCatenaXId": "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "businessPartner" : "BPNL00000003XXTH" + } ] + } ], + "urn:bamm:io.catenax.part_as_specified:2.0.0#PartAsSpecified": [ { + "partTypeInformation": { + "partClassification": [ { + "value": "STEEWHL", + "key": "BMW:PartFamily" + } ], + "ownerPartId": "22782277-50", + "partVersion": "05", + "itemCategory": "component", + "nameAtOwner": "Steering Wheel", + "partDescription": "The steering wheel is nice and round" + }, + "validityPeriod": { + "validFrom": "2023-02-10T07:17:52.396Z", + "validTo": "2023-02-10T07:17:52.396Z" + }, + "catenaXId": "urn:uuid:f41dae33-1eab-48c5-89d7-f36f71bb4e5a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-880046363577943820281666", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f41dae33-1eab-48c5-89d7-f36f71bb4e5a", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-880046363577943820281666", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f41dae33-1eab-48c5-89d7-f36f71bb4e5a" ] + }, + "id" : "urn:uuid:15640df3-8fe8-4b3d-835f-8f5cbcaded6f" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a", + "childItems" : [ { + "catenaXId" : "urn:uuid:b40cdaac-bbb9-47a0-8f95-385689f631d2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-210100050283368228111236", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-210100050283368228111236", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a" ] + }, + "id" : "urn:uuid:6a6e2ce2-d873-473f-97a2-2332271eb193" + } ] + }, { + "catenaXId" : "urn:uuid:b40cdaac-bbb9-47a0-8f95-385689f631d2", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b40cdaac-bbb9-47a0-8f95-385689f631d2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-958535181547189699425823", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b40cdaac-bbb9-47a0-8f95-385689f631d2", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-958535181547189699425823", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b40cdaac-bbb9-47a0-8f95-385689f631d2" ] + }, + "id" : "urn:uuid:dc794bd4-35d6-4887-8eba-f6b8b8ae9674" + } ] + }, { + "catenaXId" : "urn:uuid:9e3287f0-0449-4cec-bf92-1c8ddafd1dce", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9e3287f0-0449-4cec-bf92-1c8ddafd1dce" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-590831205009317141485218", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e3287f0-0449-4cec-bf92-1c8ddafd1dce", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-590831205009317141485218", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9e3287f0-0449-4cec-bf92-1c8ddafd1dce" ] + }, + "id" : "urn:uuid:a9be3420-9839-4e77-8ade-d8fb1bb3ce28" + } ] + }, { + "catenaXId" : "urn:uuid:7697dd1a-a013-4daa-a266-b63e8b295a9d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7697dd1a-a013-4daa-a266-b63e8b295a9d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-344738959942575879409775", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7697dd1a-a013-4daa-a266-b63e8b295a9d", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-344738959942575879409775", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7697dd1a-a013-4daa-a266-b63e8b295a9d" ] + }, + "id" : "urn:uuid:7794b94e-6990-414c-a3d1-476ba16cefc4" + } ] + }, { + "catenaXId" : "urn:uuid:978aa1e7-89e9-4f4a-a07d-945bff5c9ac8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:978aa1e7-89e9-4f4a-a07d-945bff5c9ac8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-637595770329497884108952", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:978aa1e7-89e9-4f4a-a07d-945bff5c9ac8", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-637595770329497884108952", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:978aa1e7-89e9-4f4a-a07d-945bff5c9ac8" ] + }, + "id" : "urn:uuid:01f761e9-b29b-43c1-bd5d-565541cb3ce8" + } ] + }, { + "catenaXId" : "urn:uuid:ff194113-c981-4ff1-bd3e-39bdef41f010", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ff194113-c981-4ff1-bd3e-39bdef41f010" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-319884143908363030246192", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ff194113-c981-4ff1-bd3e-39bdef41f010", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-319884143908363030246192", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ff194113-c981-4ff1-bd3e-39bdef41f010" ] + }, + "id" : "urn:uuid:3524203c-0a73-408e-86ad-4b2fcbb94f2a" + } ] + }, { + "catenaXId" : "urn:uuid:ba7b2ab8-707c-4fb6-af6a-2a1ef1d75337", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ba7b2ab8-707c-4fb6-af6a-2a1ef1d75337" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-181728940975469033258430", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ba7b2ab8-707c-4fb6-af6a-2a1ef1d75337", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-181728940975469033258430", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ba7b2ab8-707c-4fb6-af6a-2a1ef1d75337" ] + }, + "id" : "urn:uuid:db673568-b4cd-4915-9f10-937d78fb647b" + } ] + }, { + "catenaXId" : "urn:uuid:258cb46c-f178-462a-9e6b-da58be4ac64b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:258cb46c-f178-462a-9e6b-da58be4ac64b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-030723058828475276444851", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:258cb46c-f178-462a-9e6b-da58be4ac64b", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-030723058828475276444851", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:258cb46c-f178-462a-9e6b-da58be4ac64b" ] + }, + "id" : "urn:uuid:70de2546-ef16-4f57-b3f9-95f12f372a57" + } ] + }, { + "catenaXId" : "urn:uuid:b9e520b1-8828-4252-9497-c5702af7d91a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b9e520b1-8828-4252-9497-c5702af7d91a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-795001200040923822488590", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b9e520b1-8828-4252-9497-c5702af7d91a", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-795001200040923822488590", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b9e520b1-8828-4252-9497-c5702af7d91a" ] + }, + "id" : "urn:uuid:dcf29d75-0c69-4aac-acab-04d982bcc6a0" + } ] + }, { + "catenaXId" : "urn:uuid:230ff3d7-155e-478f-a05e-b3b21cb443ba", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:230ff3d7-155e-478f-a05e-b3b21cb443ba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-579101592478123590015445", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:230ff3d7-155e-478f-a05e-b3b21cb443ba", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-579101592478123590015445", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:230ff3d7-155e-478f-a05e-b3b21cb443ba" ] + }, + "id" : "urn:uuid:59cee208-b6ba-4f22-a6be-3c0f61770a1d" + } ] + }, { + "catenaXId" : "urn:uuid:38578eb7-3dd5-4b8c-bdfb-a9c0bb725e09", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:38578eb7-3dd5-4b8c-bdfb-a9c0bb725e09" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-386773465636909724607261", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:38578eb7-3dd5-4b8c-bdfb-a9c0bb725e09", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-386773465636909724607261", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:38578eb7-3dd5-4b8c-bdfb-a9c0bb725e09" ] + }, + "id" : "urn:uuid:94a4d709-17cc-4e34-ad1d-ea9f85b9624a" + } ] + }, { + "catenaXId" : "urn:uuid:67a51fd6-fec4-4101-abee-20d4014f5945", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:67a51fd6-fec4-4101-abee-20d4014f5945" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-047536162607119292221027", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:67a51fd6-fec4-4101-abee-20d4014f5945", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-047536162607119292221027", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:67a51fd6-fec4-4101-abee-20d4014f5945" ] + }, + "id" : "urn:uuid:62557b56-16f2-4e7c-af6c-52e3c734f616" + } ] + }, { + "catenaXId" : "urn:uuid:e39c0c6e-bd76-4a2e-8187-e5357ba0b00e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e39c0c6e-bd76-4a2e-8187-e5357ba0b00e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-396701805694151810080244", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e39c0c6e-bd76-4a2e-8187-e5357ba0b00e", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-396701805694151810080244", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e39c0c6e-bd76-4a2e-8187-e5357ba0b00e" ] + }, + "id" : "urn:uuid:75f712a5-12be-4ec3-bbec-95def89092c3" + } ] + }, { + "catenaXId" : "urn:uuid:f7c175ce-00a2-4650-bbae-b6db2669113c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f7c175ce-00a2-4650-bbae-b6db2669113c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-178914270921639932685298", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f7c175ce-00a2-4650-bbae-b6db2669113c", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-178914270921639932685298", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f7c175ce-00a2-4650-bbae-b6db2669113c" ] + }, + "id" : "urn:uuid:85136fe8-8bad-440e-a361-1bca81ceb60f" + } ] + }, { + "catenaXId" : "urn:uuid:7d59adfd-589e-4a97-9348-6ec48fd6aabf", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7d59adfd-589e-4a97-9348-6ec48fd6aabf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-101669108787670870057197", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7d59adfd-589e-4a97-9348-6ec48fd6aabf", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-101669108787670870057197", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7d59adfd-589e-4a97-9348-6ec48fd6aabf" ] + }, + "id" : "urn:uuid:786a3b60-9016-434d-9d71-799ee3bc9039" + } ] + }, { + "catenaXId" : "urn:uuid:6789d12f-44fb-4616-bda4-343499e3aee6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6789d12f-44fb-4616-bda4-343499e3aee6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-143178880635357820004517", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6789d12f-44fb-4616-bda4-343499e3aee6", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-143178880635357820004517", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6789d12f-44fb-4616-bda4-343499e3aee6" ] + }, + "id" : "urn:uuid:65615215-f091-4095-84aa-d94fa420e202" + } ] + }, { + "catenaXId" : "urn:uuid:62a1673c-ec20-40bf-9c63-59e5853832a4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:62a1673c-ec20-40bf-9c63-59e5853832a4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-850653014193608933219131", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:62a1673c-ec20-40bf-9c63-59e5853832a4", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-850653014193608933219131", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:62a1673c-ec20-40bf-9c63-59e5853832a4" ] + }, + "id" : "urn:uuid:18e5e4df-b453-43dc-98bd-a37481ec32fa" + } ] + }, { + "catenaXId" : "urn:uuid:0d50b9c8-a354-4155-ab02-d58b22852512", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0d50b9c8-a354-4155-ab02-d58b22852512" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-194701362216886813094918", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0d50b9c8-a354-4155-ab02-d58b22852512", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-194701362216886813094918", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0d50b9c8-a354-4155-ab02-d58b22852512" ] + }, + "id" : "urn:uuid:e25fc1f4-72a4-4978-88ae-48bc1a503b9a" + } ] + }, { + "catenaXId" : "urn:uuid:8fd95749-ee76-450b-b737-1d699d1f29d4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8fd95749-ee76-450b-b737-1d699d1f29d4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-754709352298381051218914", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8fd95749-ee76-450b-b737-1d699d1f29d4", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-754709352298381051218914", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8fd95749-ee76-450b-b737-1d699d1f29d4" ] + }, + "id" : "urn:uuid:e9b6530b-0876-4a93-a7e6-cb74a1010e0c" + } ] + }, { + "catenaXId" : "urn:uuid:0f19d6ea-7042-4cf3-9b52-2e532ff96089", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0f19d6ea-7042-4cf3-9b52-2e532ff96089" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-718489043851600453617038", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0f19d6ea-7042-4cf3-9b52-2e532ff96089", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-718489043851600453617038", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0f19d6ea-7042-4cf3-9b52-2e532ff96089" ] + }, + "id" : "urn:uuid:223a28a2-8451-4ca9-8ef1-c2239bc81203" + } ] + }, { + "catenaXId" : "urn:uuid:e444388d-76ea-446a-8da3-96c7fd711bb7", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e444388d-76ea-446a-8da3-96c7fd711bb7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-261994987523256082110919", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e444388d-76ea-446a-8da3-96c7fd711bb7", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-261994987523256082110919", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e444388d-76ea-446a-8da3-96c7fd711bb7" ] + }, + "id" : "urn:uuid:922a2f80-6009-48fe-af6a-d5eaee86ccc6" + } ] + }, { + "catenaXId" : "urn:uuid:c903f029-860e-4cd5-ad3d-ea3ec4ab587b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c903f029-860e-4cd5-ad3d-ea3ec4ab587b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-781120115786728127467636", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c903f029-860e-4cd5-ad3d-ea3ec4ab587b", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-781120115786728127467636", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c903f029-860e-4cd5-ad3d-ea3ec4ab587b" ] + }, + "id" : "urn:uuid:e590d651-ffcf-454a-9a03-124314b23edd" + } ] + }, { + "catenaXId" : "urn:uuid:47b5f5ed-1bf6-46ba-899e-c19f7f62e682", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:47b5f5ed-1bf6-46ba-899e-c19f7f62e682" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-699641072544927435678707", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:47b5f5ed-1bf6-46ba-899e-c19f7f62e682", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-699641072544927435678707", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:47b5f5ed-1bf6-46ba-899e-c19f7f62e682" ] + }, + "id" : "urn:uuid:f4953a92-a26d-414d-af71-1093a524ca77" + } ] + }, { + "catenaXId" : "urn:uuid:48299545-a673-467a-a341-f4337dd1ae00", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:48299545-a673-467a-a341-f4337dd1ae00" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-504774101239795809467877", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:48299545-a673-467a-a341-f4337dd1ae00", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-504774101239795809467877", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:48299545-a673-467a-a341-f4337dd1ae00" ] + }, + "id" : "urn:uuid:dac3fbc6-13e2-4887-9d98-b4f81f442917" + } ] + }, { + "catenaXId" : "urn:uuid:075f1457-728a-4fc0-b7d9-6fc088d5ba00", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:075f1457-728a-4fc0-b7d9-6fc088d5ba00" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-023895655196707545973119", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:075f1457-728a-4fc0-b7d9-6fc088d5ba00", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-023895655196707545973119", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:075f1457-728a-4fc0-b7d9-6fc088d5ba00" ] + }, + "id" : "urn:uuid:4a6eb880-af8e-4c67-a98b-5b717df50653" + } ] + }, { + "catenaXId" : "urn:uuid:5a66c091-5082-4047-b775-3d712a52c632", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5a66c091-5082-4047-b775-3d712a52c632" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-017265581836892232079826", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5a66c091-5082-4047-b775-3d712a52c632", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-017265581836892232079826", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5a66c091-5082-4047-b775-3d712a52c632" ] + }, + "id" : "urn:uuid:4a6c9016-263b-472c-9e6f-394f18fb1fdb" + } ] + }, { + "catenaXId" : "urn:uuid:4123cd33-ab15-421d-a950-a7519bbaf37b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4123cd33-ab15-421d-a950-a7519bbaf37b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-568216196724280019972058", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4123cd33-ab15-421d-a950-a7519bbaf37b", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-568216196724280019972058", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4123cd33-ab15-421d-a950-a7519bbaf37b" ] + }, + "id" : "urn:uuid:f17208f6-5b52-42d2-97db-cfd3c3de1ed9" + } ] + }, { + "catenaXId" : "urn:uuid:7c548fd4-6428-42e5-88cb-2088bccf5c84", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7c548fd4-6428-42e5-88cb-2088bccf5c84" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-183676622165599322089918", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7c548fd4-6428-42e5-88cb-2088bccf5c84", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-183676622165599322089918", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7c548fd4-6428-42e5-88cb-2088bccf5c84" ] + }, + "id" : "urn:uuid:9ddaa2ae-7ea6-42c4-ac14-1d965ef7a548" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", + "childItems" : [ { + "catenaXId" : "urn:uuid:93f2009f-f928-47b8-982e-3232a0ad0727", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:06b1358f-a90f-4ac0-9ff7-377acaae3f34", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-194528578701427920299632", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-194528578701427920299632", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-194528578701427920299632", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd" ] + }, + "id" : "urn:uuid:85ee9c0f-f5da-4c5a-9742-0e4136997ee0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 86, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 79, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 25, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:93f2009f-f928-47b8-982e-3232a0ad0727", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:93f2009f-f928-47b8-982e-3232a0ad0727" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "14627J4-22", + "key" : "manufacturerPartId" + }, { + "value" : "NO-279116411757901451427562", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:93f2009f-f928-47b8-982e-3232a0ad0727", + "partTypeInformation" : { + "manufacturerPartId" : "14627J4-22", + "customerPartId" : "14627J4-22", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 29, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 51, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4", + "childItems" : [ { + "catenaXId" : "urn:uuid:d15ae90b-725f-4bbe-b8d0-ff49a56f9b3e", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "54186M9-14", + "key" : "manufacturerPartId" + }, { + "value" : "NO-487385558900092368029991", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4", + "partTypeInformation" : { + "manufacturerPartId" : "54186M9-14", + "customerPartId" : "54186M9-14", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-487385558900092368029991", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54186M9-14", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4" ] + }, + "id" : "urn:uuid:aeff32aa-4711-49e5-9818-f8bfbb28e9f8" + } ] + }, { + "catenaXId" : "urn:uuid:d15ae90b-725f-4bbe-b8d0-ff49a56f9b3e", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d15ae90b-725f-4bbe-b8d0-ff49a56f9b3e" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "69007K6-66", + "key" : "manufacturerPartId" + }, { + "value" : "NO-969975539564677788795981", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d15ae90b-725f-4bbe-b8d0-ff49a56f9b3e", + "partTypeInformation" : { + "manufacturerPartId" : "69007K6-66", + "customerPartId" : "69007K6-66", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 9, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 61, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:06b1358f-a90f-4ac0-9ff7-377acaae3f34", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:06b1358f-a90f-4ac0-9ff7-377acaae3f34", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:06b1358f-a90f-4ac0-9ff7-377acaae3f34" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "58079I0-28", + "key" : "manufacturerPartId" + }, { + "value" : "NO-154525512838510291108651", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:06b1358f-a90f-4ac0-9ff7-377acaae3f34", + "partTypeInformation" : { + "manufacturerPartId" : "58079I0-28", + "customerPartId" : "58079I0-28", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b", + "childItems" : [ { + "catenaXId" : "urn:uuid:4d1fae8a-173a-40bb-ade9-642f43771477", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:51f25dea-fcf6-4a4c-869e-c0d8ab411267", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "81587R5-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-181031636728968397034614", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b", + "partTypeInformation" : { + "manufacturerPartId" : "81587R5-74", + "customerPartId" : "81587R5-74", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-181031636728968397034614", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81587R5-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b" ] + }, + "id" : "urn:uuid:4fecab66-47cb-4c69-a7c1-1d854642ba33" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 36, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:4d1fae8a-173a-40bb-ade9-642f43771477", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4d1fae8a-173a-40bb-ade9-642f43771477" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "17914L5-51", + "key" : "manufacturerPartId" + }, { + "value" : "NO-812383832910836970962488", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4d1fae8a-173a-40bb-ade9-642f43771477", + "partTypeInformation" : { + "manufacturerPartId" : "17914L5-51", + "customerPartId" : "17914L5-51", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 66, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 86, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366", + "childItems" : [ { + "catenaXId" : "urn:uuid:1308c46a-fa0d-4b23-8419-75afb8b49fdc", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "59307W6-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-442309655772189397010436", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366", + "partTypeInformation" : { + "manufacturerPartId" : "59307W6-43", + "customerPartId" : "59307W6-43", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-442309655772189397010436", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "59307W6-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366" ] + }, + "id" : "urn:uuid:ef5b4517-db6e-45fd-b4a1-d59f1a450a0b" + } ] + }, { + "catenaXId" : "urn:uuid:1308c46a-fa0d-4b23-8419-75afb8b49fdc", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1308c46a-fa0d-4b23-8419-75afb8b49fdc" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "37952Z9-36", + "key" : "manufacturerPartId" + }, { + "value" : "NO-943700975448342824457610", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1308c46a-fa0d-4b23-8419-75afb8b49fdc", + "partTypeInformation" : { + "manufacturerPartId" : "37952Z9-36", + "customerPartId" : "37952Z9-36", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 4, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 74, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:51f25dea-fcf6-4a4c-869e-c0d8ab411267", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:51f25dea-fcf6-4a4c-869e-c0d8ab411267" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "87758Y0-31", + "key" : "manufacturerPartId" + }, { + "value" : "NO-954328604715403767742420", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:51f25dea-fcf6-4a4c-869e-c0d8ab411267", + "partTypeInformation" : { + "manufacturerPartId" : "87758Y0-31", + "customerPartId" : "87758Y0-31", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-954328604715403767742420", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "87758Y0-31", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:51f25dea-fcf6-4a4c-869e-c0d8ab411267" ] + }, + "id" : "urn:uuid:beffc3ec-dc0e-4c05-9478-3dba20636cf8" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 87, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 87, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "engine" : { + "size" : 2998, + "power" : 154 + }, + "emptyWeight" : 1.79, + "fuel" : "petrol", + "vehicleModel" : "Vehicle Combustion", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + }, { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "childItems" : [ { + "catenaXId" : "urn:uuid:75ee7c7e-70d0-4c99-9a82-2df875e938f6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d772c51d-cbdb-4888-918f-28c9cbb1f37b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:029e6770-4e88-48f1-8efd-2e6d69e79b0b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1f105134-f21d-4892-b0b1-167df2e074da", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d7e3917-7613-4003-b4f0-7a706f5fd701", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a3cddafe-8450-42c8-a225-7b4032f47e0a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fb4236e9-2c5e-418d-95ae-17845860173a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a7d1bed1-8565-43a2-ba45-c13447f913c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:26f0a614-fb20-410e-b698-03f32d7994a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bb7082c5-b613-4cd2-888d-102dceea0c70", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c67d0cdf-d90f-4fe2-8f48-13815610bd3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6052e6f6-1f4c-42e6-9d12-c424dee2b75b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8be87615-0bb8-4521-84b7-1558c4e96fc8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d1f5e786-2764-4304-b94e-5d42ff35c166", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:84e3a802-1774-43b4-b26f-ec61558fc50d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:818dd9aa-57f0-4a52-84ac-5496ba9b6000", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:073ab468-b915-449a-a461-de7ed1d16335", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:05d9435d-b88a-4722-802f-a58d3d7d384f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d1b4a649-4e99-4494-82e0-ebb482c7ab53", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b4df5b9f-da07-4f02-bb57-4cbd5ca6dde6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:42ada632-1346-4dc8-ae8d-1094c958804b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d236fe63-5c46-49ff-aa4d-4ce200239936", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6cba1b97-cb3e-498c-b0cb-15a3694c7693", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:75cbd7f7-16c1-4ff5-b911-56cef45f736f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cf37547a-fbc5-44f5-84bc-206a6193e5e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:df36bb69-4b66-4a51-aae7-6dd62aede2d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:559b6e4d-5537-422f-ac8a-0f92e824a3f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7961eae5-8c87-43c9-84ac-b2ba32435317", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5fdd6b9a-dca1-4d85-ab50-36358ee3b889", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:079509f7-9e78-45f5-b06c-cf95deea3f77", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "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" + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "TY-23", + "key" : "manufacturerPartId" + }, { + "value" : "OMCNAXRMATEMEDENV", + "key" : "partInstanceId" + }, { + "value" : "OMCNAXRMATEMEDENV", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2016-03-18T07:26:44.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "partTypeInformation" : { + "manufacturerPartId" : "TY-23", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCNAXRMATEMEDENV", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "TY-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_combustion.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Combustion" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, + "id" : "urn:uuid:47196dea-df1b-47da-9529-b38cc88d8a2d" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 75, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 32, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 66, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 62, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 50, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 34, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 69, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 70, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 47, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 62, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:75ee7c7e-70d0-4c99-9a82-2df875e938f6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:75ee7c7e-70d0-4c99-9a82-2df875e938f6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-287231682142622796340779", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:75ee7c7e-70d0-4c99-9a82-2df875e938f6", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-287231682142622796340779", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:75ee7c7e-70d0-4c99-9a82-2df875e938f6" ] + }, + "id" : "urn:uuid:37b231c6-7de3-4fe4-91b9-544bbada4666" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:d772c51d-cbdb-4888-918f-28c9cbb1f37b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d772c51d-cbdb-4888-918f-28c9cbb1f37b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-161181639035704403303052", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d772c51d-cbdb-4888-918f-28c9cbb1f37b", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-161181639035704403303052", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d772c51d-cbdb-4888-918f-28c9cbb1f37b" ] + }, + "id" : "urn:uuid:8958ddd2-ff28-43af-9de3-aec86b7363d0" + } ] + }, { + "catenaXId" : "urn:uuid:029e6770-4e88-48f1-8efd-2e6d69e79b0b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:029e6770-4e88-48f1-8efd-2e6d69e79b0b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-296120343755623735139810", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:029e6770-4e88-48f1-8efd-2e6d69e79b0b", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-296120343755623735139810", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:029e6770-4e88-48f1-8efd-2e6d69e79b0b" ] + }, + "id" : "urn:uuid:19265e2c-7407-45e1-9ba8-02f2697201ef" + } ] + }, { + "catenaXId" : "urn:uuid:1f105134-f21d-4892-b0b1-167df2e074da", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1f105134-f21d-4892-b0b1-167df2e074da" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-362417812064966668026837", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1f105134-f21d-4892-b0b1-167df2e074da", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-362417812064966668026837", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1f105134-f21d-4892-b0b1-167df2e074da" ] + }, + "id" : "urn:uuid:62867f26-2040-49f5-92fd-30239b548e39" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2", + "childItems" : [ { + "catenaXId" : "urn:uuid:fc164ede-a193-4066-b2c1-3293a7e16be0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-031360962179523175531625", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-031360962179523175531625", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2" ] + }, + "id" : "urn:uuid:c945cdb9-4b96-4279-aff0-d9947e59b0e8" + } ] + }, { + "catenaXId" : "urn:uuid:fc164ede-a193-4066-b2c1-3293a7e16be0", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fc164ede-a193-4066-b2c1-3293a7e16be0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-474124304204922248314208", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fc164ede-a193-4066-b2c1-3293a7e16be0", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-474124304204922248314208", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fc164ede-a193-4066-b2c1-3293a7e16be0" ] + }, + "id" : "urn:uuid:b0431fa5-bc38-462a-9563-fcaea81d3df6" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b", + "childItems" : [ { + "catenaXId" : "urn:uuid:576ef77c-432e-4494-bbdf-553e74a9e536", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-540841135714720019568832", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-540841135714720019568832", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b" ] + }, + "id" : "urn:uuid:85ed0d35-7a18-48bb-a696-ada925926179" + } ] + }, { + "catenaXId" : "urn:uuid:576ef77c-432e-4494-bbdf-553e74a9e536", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:576ef77c-432e-4494-bbdf-553e74a9e536" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-963462785471320352246998", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:576ef77c-432e-4494-bbdf-553e74a9e536", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-963462785471320352246998", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:576ef77c-432e-4494-bbdf-553e74a9e536" ] + }, + "id" : "urn:uuid:ce550ee1-0f95-435e-97b9-d53cb2d13731" + } ] + }, { + "catenaXId" : "urn:uuid:6d7e3917-7613-4003-b4f0-7a706f5fd701", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6d7e3917-7613-4003-b4f0-7a706f5fd701" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-625547835158076019105836", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6d7e3917-7613-4003-b4f0-7a706f5fd701", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-625547835158076019105836", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6d7e3917-7613-4003-b4f0-7a706f5fd701" ] + }, + "id" : "urn:uuid:2fad8f2e-dfb2-4ac4-9b9b-ef61ec2328f2" + } ] + }, { + "catenaXId" : "urn:uuid:a3cddafe-8450-42c8-a225-7b4032f47e0a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a3cddafe-8450-42c8-a225-7b4032f47e0a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-389251412288639257837241", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a3cddafe-8450-42c8-a225-7b4032f47e0a", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-389251412288639257837241", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a3cddafe-8450-42c8-a225-7b4032f47e0a" ] + }, + "id" : "urn:uuid:7c1dd1b1-86ec-4f3d-b45c-50a01391b83b" + } ] + }, { + "catenaXId" : "urn:uuid:fb4236e9-2c5e-418d-95ae-17845860173a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fb4236e9-2c5e-418d-95ae-17845860173a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-185162700188514925309323", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fb4236e9-2c5e-418d-95ae-17845860173a", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-185162700188514925309323", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fb4236e9-2c5e-418d-95ae-17845860173a" ] + }, + "id" : "urn:uuid:625e269e-68e1-4f01-8ad9-85bfbf337e8d" + } ] + }, { + "catenaXId" : "urn:uuid:a7d1bed1-8565-43a2-ba45-c13447f913c0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a7d1bed1-8565-43a2-ba45-c13447f913c0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-804796334025190935513558", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a7d1bed1-8565-43a2-ba45-c13447f913c0", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-804796334025190935513558", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a7d1bed1-8565-43a2-ba45-c13447f913c0" ] + }, + "id" : "urn:uuid:e3fe5a9a-006e-4881-8e8d-0fee871033e8" + } ] + }, { + "catenaXId" : "urn:uuid:26f0a614-fb20-410e-b698-03f32d7994a2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:26f0a614-fb20-410e-b698-03f32d7994a2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-864718178033701801100126", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:26f0a614-fb20-410e-b698-03f32d7994a2", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-864718178033701801100126", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:26f0a614-fb20-410e-b698-03f32d7994a2" ] + }, + "id" : "urn:uuid:6bdcae9b-c703-4a5b-ac1c-1bde55a238b8" + } ] + }, { + "catenaXId" : "urn:uuid:bb7082c5-b613-4cd2-888d-102dceea0c70", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bb7082c5-b613-4cd2-888d-102dceea0c70" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-817234765175156499684525", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bb7082c5-b613-4cd2-888d-102dceea0c70", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-817234765175156499684525", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bb7082c5-b613-4cd2-888d-102dceea0c70" ] + }, + "id" : "urn:uuid:b713bb62-e567-4765-b59c-d9a133abf852" + } ] + }, { + "catenaXId" : "urn:uuid:c67d0cdf-d90f-4fe2-8f48-13815610bd3a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c67d0cdf-d90f-4fe2-8f48-13815610bd3a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-128321853803092280816612", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c67d0cdf-d90f-4fe2-8f48-13815610bd3a", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-128321853803092280816612", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c67d0cdf-d90f-4fe2-8f48-13815610bd3a" ] + }, + "id" : "urn:uuid:ffffe8bb-088a-4835-acbe-0d0d87ccf5ad" + } ] + }, { + "catenaXId" : "urn:uuid:6052e6f6-1f4c-42e6-9d12-c424dee2b75b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6052e6f6-1f4c-42e6-9d12-c424dee2b75b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-790562463083290401305746", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6052e6f6-1f4c-42e6-9d12-c424dee2b75b", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-790562463083290401305746", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6052e6f6-1f4c-42e6-9d12-c424dee2b75b" ] + }, + "id" : "urn:uuid:1c849a68-aa6c-4502-9e8c-0e0179d914e1" + } ] + }, { + "catenaXId" : "urn:uuid:8be87615-0bb8-4521-84b7-1558c4e96fc8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8be87615-0bb8-4521-84b7-1558c4e96fc8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-711603904094090773223606", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8be87615-0bb8-4521-84b7-1558c4e96fc8", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-711603904094090773223606", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8be87615-0bb8-4521-84b7-1558c4e96fc8" ] + }, + "id" : "urn:uuid:46182027-9d18-4a79-a1e9-89af24ce00d4" + } ] + }, { + "catenaXId" : "urn:uuid:d1f5e786-2764-4304-b94e-5d42ff35c166", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d1f5e786-2764-4304-b94e-5d42ff35c166" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-795075452011076410799544", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d1f5e786-2764-4304-b94e-5d42ff35c166", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-795075452011076410799544", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d1f5e786-2764-4304-b94e-5d42ff35c166" ] + }, + "id" : "urn:uuid:84636756-23c6-4da0-9b3d-994820bba455" + } ] + }, { + "catenaXId" : "urn:uuid:84e3a802-1774-43b4-b26f-ec61558fc50d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:84e3a802-1774-43b4-b26f-ec61558fc50d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-099597887498448091826105", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:84e3a802-1774-43b4-b26f-ec61558fc50d", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-099597887498448091826105", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:84e3a802-1774-43b4-b26f-ec61558fc50d" ] + }, + "id" : "urn:uuid:9e07ae27-b1c3-40dc-985d-d9e46cbc4b8f" + } ] + }, { + "catenaXId" : "urn:uuid:818dd9aa-57f0-4a52-84ac-5496ba9b6000", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:818dd9aa-57f0-4a52-84ac-5496ba9b6000" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-018498333248282034687562", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:818dd9aa-57f0-4a52-84ac-5496ba9b6000", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-018498333248282034687562", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:818dd9aa-57f0-4a52-84ac-5496ba9b6000" ] + }, + "id" : "urn:uuid:5f2e2c62-d433-41d6-a4c4-939cc2447e2e" + } ] + }, { + "catenaXId" : "urn:uuid:073ab468-b915-449a-a461-de7ed1d16335", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:073ab468-b915-449a-a461-de7ed1d16335" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-687718317976374140574008", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:073ab468-b915-449a-a461-de7ed1d16335", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-687718317976374140574008", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:073ab468-b915-449a-a461-de7ed1d16335" ] + }, + "id" : "urn:uuid:b0214fc2-2baf-45e9-a766-a254f7b28205" + } ] + }, { + "catenaXId" : "urn:uuid:05d9435d-b88a-4722-802f-a58d3d7d384f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:05d9435d-b88a-4722-802f-a58d3d7d384f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-796839800357479896504465", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:05d9435d-b88a-4722-802f-a58d3d7d384f", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-796839800357479896504465", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:05d9435d-b88a-4722-802f-a58d3d7d384f" ] + }, + "id" : "urn:uuid:78e0b75c-dcef-411f-9766-f5e23428d3a0" + } ] + }, { + "catenaXId" : "urn:uuid:d1b4a649-4e99-4494-82e0-ebb482c7ab53", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d1b4a649-4e99-4494-82e0-ebb482c7ab53" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-451029655127218538750099", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d1b4a649-4e99-4494-82e0-ebb482c7ab53", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-451029655127218538750099", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d1b4a649-4e99-4494-82e0-ebb482c7ab53" ] + }, + "id" : "urn:uuid:5796ab79-4be5-4530-abe8-feb5e91e8167" + } ] + }, { + "catenaXId" : "urn:uuid:b4df5b9f-da07-4f02-bb57-4cbd5ca6dde6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b4df5b9f-da07-4f02-bb57-4cbd5ca6dde6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-202574468773255936241853", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b4df5b9f-da07-4f02-bb57-4cbd5ca6dde6", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-202574468773255936241853", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b4df5b9f-da07-4f02-bb57-4cbd5ca6dde6" ] + }, + "id" : "urn:uuid:1b0e2dbb-c5c4-4cf7-9eaa-6f72cec61348" + } ] + }, { + "catenaXId" : "urn:uuid:42ada632-1346-4dc8-ae8d-1094c958804b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:42ada632-1346-4dc8-ae8d-1094c958804b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-034887700264940948022194", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:42ada632-1346-4dc8-ae8d-1094c958804b", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-034887700264940948022194", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:42ada632-1346-4dc8-ae8d-1094c958804b" ] + }, + "id" : "urn:uuid:d951e230-7ebe-4e63-863b-b17b72b73e2d" + } ] + }, { + "catenaXId" : "urn:uuid:d236fe63-5c46-49ff-aa4d-4ce200239936", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d236fe63-5c46-49ff-aa4d-4ce200239936" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-790015707646411668074138", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d236fe63-5c46-49ff-aa4d-4ce200239936", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-790015707646411668074138", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d236fe63-5c46-49ff-aa4d-4ce200239936" ] + }, + "id" : "urn:uuid:ba24ff67-11f9-4ef3-8abd-28024979d3ec" + } ] + }, { + "catenaXId" : "urn:uuid:6cba1b97-cb3e-498c-b0cb-15a3694c7693", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6cba1b97-cb3e-498c-b0cb-15a3694c7693" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-023838416849800729438130", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6cba1b97-cb3e-498c-b0cb-15a3694c7693", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-023838416849800729438130", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6cba1b97-cb3e-498c-b0cb-15a3694c7693" ] + }, + "id" : "urn:uuid:45511ef7-63c6-4607-9b3a-009008fc38ae" + } ] + }, { + "catenaXId" : "urn:uuid:75cbd7f7-16c1-4ff5-b911-56cef45f736f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:75cbd7f7-16c1-4ff5-b911-56cef45f736f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-834004954294339966731061", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:75cbd7f7-16c1-4ff5-b911-56cef45f736f", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-834004954294339966731061", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:75cbd7f7-16c1-4ff5-b911-56cef45f736f" ] + }, + "id" : "urn:uuid:daa71e99-a881-4d84-87b1-0ec9cd776222" + } ] + }, { + "catenaXId" : "urn:uuid:cf37547a-fbc5-44f5-84bc-206a6193e5e0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cf37547a-fbc5-44f5-84bc-206a6193e5e0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-005038308819264100276178", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cf37547a-fbc5-44f5-84bc-206a6193e5e0", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-005038308819264100276178", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cf37547a-fbc5-44f5-84bc-206a6193e5e0" ] + }, + "id" : "urn:uuid:0dc2df59-05de-4915-9794-7528f9d3f19a" + } ] + }, { + "catenaXId" : "urn:uuid:df36bb69-4b66-4a51-aae7-6dd62aede2d8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:df36bb69-4b66-4a51-aae7-6dd62aede2d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-743137363485180637453498", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:df36bb69-4b66-4a51-aae7-6dd62aede2d8", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-743137363485180637453498", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:df36bb69-4b66-4a51-aae7-6dd62aede2d8" ] + }, + "id" : "urn:uuid:097e3c76-0995-405b-ac0a-b2eece74f0ae" + } ] + }, { + "catenaXId" : "urn:uuid:559b6e4d-5537-422f-ac8a-0f92e824a3f2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:559b6e4d-5537-422f-ac8a-0f92e824a3f2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-131325208808027217656444", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:559b6e4d-5537-422f-ac8a-0f92e824a3f2", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-131325208808027217656444", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:559b6e4d-5537-422f-ac8a-0f92e824a3f2" ] + }, + "id" : "urn:uuid:e5abedeb-fc09-423a-866f-8be4c2dba9c9" + } ] + }, { + "catenaXId" : "urn:uuid:7961eae5-8c87-43c9-84ac-b2ba32435317", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7961eae5-8c87-43c9-84ac-b2ba32435317" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-319987488578849418409935", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7961eae5-8c87-43c9-84ac-b2ba32435317", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-319987488578849418409935", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7961eae5-8c87-43c9-84ac-b2ba32435317" ] + }, + "id" : "urn:uuid:005cc652-aeed-47d7-885e-851dcd804996" + } ] + }, { + "catenaXId" : "urn:uuid:5fdd6b9a-dca1-4d85-ab50-36358ee3b889", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5fdd6b9a-dca1-4d85-ab50-36358ee3b889" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-429985996376804433727322", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5fdd6b9a-dca1-4d85-ab50-36358ee3b889", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-429985996376804433727322", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5fdd6b9a-dca1-4d85-ab50-36358ee3b889" ] + }, + "id" : "urn:uuid:81623a8f-57c7-4a10-b5b9-92a1abbcaa1a" + } ] + }, { + "catenaXId" : "urn:uuid:079509f7-9e78-45f5-b06c-cf95deea3f77", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:079509f7-9e78-45f5-b06c-cf95deea3f77" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-989759981261243431385022", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:079509f7-9e78-45f5-b06c-cf95deea3f77", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-989759981261243431385022", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:079509f7-9e78-45f5-b06c-cf95deea3f77" ] + }, + "id" : "urn:uuid:f32cdb9e-fe2e-47ae-b904-77f05cbd43b2" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a852ada-7d42-4a85-8a19-300503e234ae", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:13931e36-2319-4c18-896d-c99ac9fd5b9f", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-236938603963731348901239", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-236938603963731348901239", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-236938603963731348901239", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b" ] + }, + "id" : "urn:uuid:d2d4c2e1-b016-4ccd-8e56-eafe50e82607" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 79, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 21, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 24, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9a852ada-7d42-4a85-8a19-300503e234ae", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9a852ada-7d42-4a85-8a19-300503e234ae" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "96486G7-29", + "key" : "manufacturerPartId" + }, { + "value" : "NO-939960567261604307414557", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9a852ada-7d42-4a85-8a19-300503e234ae", + "partTypeInformation" : { + "manufacturerPartId" : "96486G7-29", + "customerPartId" : "96486G7-29", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 31, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 19, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde", + "childItems" : [ { + "catenaXId" : "urn:uuid:abce35f9-22c7-4a3b-b897-6f866a8039b7", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "05270T6-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-901550611834197658852147", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde", + "partTypeInformation" : { + "manufacturerPartId" : "05270T6-25", + "customerPartId" : "05270T6-25", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-901550611834197658852147", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "05270T6-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde" ] + }, + "id" : "urn:uuid:49e3fa5a-201e-4435-a59f-1fdff2630ce1" + } ] + }, { + "catenaXId" : "urn:uuid:abce35f9-22c7-4a3b-b897-6f866a8039b7", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:abce35f9-22c7-4a3b-b897-6f866a8039b7" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "96587J8-84", + "key" : "manufacturerPartId" + }, { + "value" : "NO-213905443749112213266271", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:abce35f9-22c7-4a3b-b897-6f866a8039b7", + "partTypeInformation" : { + "manufacturerPartId" : "96587J8-84", + "customerPartId" : "96587J8-84", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 64, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 17, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:13931e36-2319-4c18-896d-c99ac9fd5b9f", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:13931e36-2319-4c18-896d-c99ac9fd5b9f", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:13931e36-2319-4c18-896d-c99ac9fd5b9f" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "79963M5-58", + "key" : "manufacturerPartId" + }, { + "value" : "NO-710890810076765616768884", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:13931e36-2319-4c18-896d-c99ac9fd5b9f", + "partTypeInformation" : { + "manufacturerPartId" : "79963M5-58", + "customerPartId" : "79963M5-58", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4", + "childItems" : [ { + "catenaXId" : "urn:uuid:a8c0d550-59c4-40e7-9c0e-dc1b87ec80b1", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a097b02d-2f66-4038-8d30-b9347da7a562", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "38733M5-40", + "key" : "manufacturerPartId" + }, { + "value" : "NO-367775830060085173920172", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4", + "partTypeInformation" : { + "manufacturerPartId" : "38733M5-40", + "customerPartId" : "38733M5-40", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-367775830060085173920172", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38733M5-40", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4" ] + }, + "id" : "urn:uuid:ae5b37dc-3700-446a-84ef-e8a8f862fb70" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 11, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a8c0d550-59c4-40e7-9c0e-dc1b87ec80b1", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a8c0d550-59c4-40e7-9c0e-dc1b87ec80b1" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "02231H3-10", + "key" : "manufacturerPartId" + }, { + "value" : "NO-186341034001887743253772", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a8c0d550-59c4-40e7-9c0e-dc1b87ec80b1", + "partTypeInformation" : { + "manufacturerPartId" : "02231H3-10", + "customerPartId" : "02231H3-10", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 61, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 50, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842", + "childItems" : [ { + "catenaXId" : "urn:uuid:e8edf987-db8c-4dd7-b233-6d8ad2e253cd", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "20522B9-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-639334786501715039764205", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842", + "partTypeInformation" : { + "manufacturerPartId" : "20522B9-09", + "customerPartId" : "20522B9-09", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-639334786501715039764205", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20522B9-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842" ] + }, + "id" : "urn:uuid:a0389c8a-9789-4905-9949-601c3b20bc95" + } ] + }, { + "catenaXId" : "urn:uuid:e8edf987-db8c-4dd7-b233-6d8ad2e253cd", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e8edf987-db8c-4dd7-b233-6d8ad2e253cd" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "76045K5-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-038304210913180851166810", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e8edf987-db8c-4dd7-b233-6d8ad2e253cd", + "partTypeInformation" : { + "manufacturerPartId" : "76045K5-16", + "customerPartId" : "76045K5-16", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 51, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 16, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a097b02d-2f66-4038-8d30-b9347da7a562", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a097b02d-2f66-4038-8d30-b9347da7a562" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "01843I9-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-195052751214764621429253", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a097b02d-2f66-4038-8d30-b9347da7a562", + "partTypeInformation" : { + "manufacturerPartId" : "01843I9-16", + "customerPartId" : "01843I9-16", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-195052751214764621429253", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "01843I9-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a097b02d-2f66-4038-8d30-b9347da7a562" ] + }, + "id" : "urn:uuid:d1e840e9-6629-4427-8a94-1ee42e449b66" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 56, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 42, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "engine" : { + "size" : 2998, + "power" : 154 + }, + "emptyWeight" : 1.79, + "fuel" : "petrol", + "vehicleModel" : "Vehicle Combustion", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "childItems" : [ { + "catenaXId" : "urn:uuid:f4c26c34-47f8-498d-9565-2439c79bf287", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be10b948-b72a-4081-9c6c-2a0053ce0702", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2f3116a0-2c5f-4d87-b086-a27d0257be26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:77d74d4b-81cc-40f6-bc15-09939b0132f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4435f4f5-149a-4868-a044-76dce092d4ff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1c683f18-5b01-42e2-b78f-afd03581dfc1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3d9d7b27-839e-48b5-9453-111c9281274e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:986d7a11-a852-4aa0-8624-d0b83f8a6eca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:11990aba-ca76-4d91-a45a-e388f169e7dc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0c1f5873-9464-41fd-b935-ba657603c2b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:49279f9e-e262-4825-99de-b3e86140b9eb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:485f6756-9cf9-46c0-b320-17e88823c87f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:17f2667c-b44a-4695-a282-2fd3b460ae2c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c91e18fb-c0f8-4e3e-9e1b-0312f440d29d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e5d7dc94-c823-4581-8623-cd5513879197", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:885e7021-3e57-48a9-a11a-c511e8295cdc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ae0ffb80-d877-4320-8acc-7be7cf64955d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e74641a6-fa74-497a-8819-70fc58a38122", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f3c6a1f1-1c90-45b7-be94-67032d24cef5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:22d80cc9-f9dd-40b1-a4e7-5fd23f987c9a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7d31f16b-1a0b-4e11-9a07-00c75e8d5bb6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8406fdf7-3dfb-44d6-b607-a5457ef09869", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:560c7ebb-6fa6-42cc-b28c-e82e68b65fd6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0984aed2-c565-443f-aea0-58cff1175b77", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7afb4a8e-bb54-4c4a-abae-567e5ef71821", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:614a3051-8769-44a0-b255-cbde33923604", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f6448ec2-dbda-41bb-9202-3b75726c93a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:16609a10-6e4a-4720-8c02-26d85f7d84fc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6e687f1d-71ea-43b2-8f80-7121c0b3353f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:07407037-cffe-4412-b397-b8e87bd33594", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "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" + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "JJ-43", + "key" : "manufacturerPartId" + }, { + "value" : "OMCODXGPGLPLKEAIQ", + "key" : "partInstanceId" + }, { + "value" : "OMCODXGPGLPLKEAIQ", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2017-10-19T08:13:52.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "partTypeInformation" : { + "manufacturerPartId" : "JJ-43", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCODXGPGLPLKEAIQ", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "JJ-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_combustion.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Combustion" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, + "id" : "urn:uuid:6e6a3737-efcf-4a0d-81ca-6305a8ba1eef" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 40, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 82, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 68, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 48, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 4, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 22, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 40, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 34, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 44, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 66, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f4c26c34-47f8-498d-9565-2439c79bf287", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f4c26c34-47f8-498d-9565-2439c79bf287" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-868010471412593686835210", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f4c26c34-47f8-498d-9565-2439c79bf287", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-868010471412593686835210", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f4c26c34-47f8-498d-9565-2439c79bf287" ] + }, + "id" : "urn:uuid:80706749-7e80-4a34-aae9-10a8b984dfe1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:be10b948-b72a-4081-9c6c-2a0053ce0702", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be10b948-b72a-4081-9c6c-2a0053ce0702" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-181373462189686845363292", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be10b948-b72a-4081-9c6c-2a0053ce0702", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-181373462189686845363292", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:be10b948-b72a-4081-9c6c-2a0053ce0702" ] + }, + "id" : "urn:uuid:3e20da71-758b-4e57-ae1e-8bb7f9034fa2" + } ] + }, { + "catenaXId" : "urn:uuid:2f3116a0-2c5f-4d87-b086-a27d0257be26", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2f3116a0-2c5f-4d87-b086-a27d0257be26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-133752011503871892363423", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2f3116a0-2c5f-4d87-b086-a27d0257be26", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-133752011503871892363423", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2f3116a0-2c5f-4d87-b086-a27d0257be26" ] + }, + "id" : "urn:uuid:e49104df-5571-4f07-ad0b-807f9496c279" + } ] + }, { + "catenaXId" : "urn:uuid:77d74d4b-81cc-40f6-bc15-09939b0132f3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:77d74d4b-81cc-40f6-bc15-09939b0132f3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-725201421586702035512406", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:77d74d4b-81cc-40f6-bc15-09939b0132f3", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-725201421586702035512406", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:77d74d4b-81cc-40f6-bc15-09939b0132f3" ] + }, + "id" : "urn:uuid:a7e85036-6b9e-45c4-8a1a-1b9f98a08afe" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea", + "childItems" : [ { + "catenaXId" : "urn:uuid:52a568c3-8d0c-4b67-b197-7e9e9a42b4e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-330726576164314068402248", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-330726576164314068402248", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea" ] + }, + "id" : "urn:uuid:62518928-3995-474b-ab73-4ca447e6f875" + } ] + }, { + "catenaXId" : "urn:uuid:52a568c3-8d0c-4b67-b197-7e9e9a42b4e8", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:52a568c3-8d0c-4b67-b197-7e9e9a42b4e8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-613202186493235205805491", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:52a568c3-8d0c-4b67-b197-7e9e9a42b4e8", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-613202186493235205805491", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:52a568c3-8d0c-4b67-b197-7e9e9a42b4e8" ] + }, + "id" : "urn:uuid:1634fc28-d963-4980-b215-464f7b36fb9f" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45", + "childItems" : [ { + "catenaXId" : "urn:uuid:48031b61-e174-4de6-8f74-03d2d7da2b01", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-113387318533823545586351", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-113387318533823545586351", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45" ] + }, + "id" : "urn:uuid:37cccd1d-81c1-4148-b7c4-5319314072af" + } ] + }, { + "catenaXId" : "urn:uuid:48031b61-e174-4de6-8f74-03d2d7da2b01", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:48031b61-e174-4de6-8f74-03d2d7da2b01" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-294875563917651202032409", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:48031b61-e174-4de6-8f74-03d2d7da2b01", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-294875563917651202032409", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:48031b61-e174-4de6-8f74-03d2d7da2b01" ] + }, + "id" : "urn:uuid:16c4d079-c68d-4609-8f41-efa6480173f5" + } ] + }, { + "catenaXId" : "urn:uuid:4435f4f5-149a-4868-a044-76dce092d4ff", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4435f4f5-149a-4868-a044-76dce092d4ff" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-073006937092656885907377", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4435f4f5-149a-4868-a044-76dce092d4ff", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-073006937092656885907377", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4435f4f5-149a-4868-a044-76dce092d4ff" ] + }, + "id" : "urn:uuid:f0b6980d-8884-40a9-a6e7-a845cf5e1e05" + } ] + }, { + "catenaXId" : "urn:uuid:1c683f18-5b01-42e2-b78f-afd03581dfc1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1c683f18-5b01-42e2-b78f-afd03581dfc1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-930029074104051854011580", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1c683f18-5b01-42e2-b78f-afd03581dfc1", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-930029074104051854011580", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1c683f18-5b01-42e2-b78f-afd03581dfc1" ] + }, + "id" : "urn:uuid:5bc16deb-fdf2-4021-b127-d30f310be379" + } ] + }, { + "catenaXId" : "urn:uuid:3d9d7b27-839e-48b5-9453-111c9281274e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3d9d7b27-839e-48b5-9453-111c9281274e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-896061661163338630325435", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3d9d7b27-839e-48b5-9453-111c9281274e", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-896061661163338630325435", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3d9d7b27-839e-48b5-9453-111c9281274e" ] + }, + "id" : "urn:uuid:bc913d29-53af-4a6d-8b05-d52d55020432" + } ] + }, { + "catenaXId" : "urn:uuid:986d7a11-a852-4aa0-8624-d0b83f8a6eca", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:986d7a11-a852-4aa0-8624-d0b83f8a6eca" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-660949701572034312202209", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:986d7a11-a852-4aa0-8624-d0b83f8a6eca", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-660949701572034312202209", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:986d7a11-a852-4aa0-8624-d0b83f8a6eca" ] + }, + "id" : "urn:uuid:b7e6e8ce-7204-42db-be19-c1003cbc377d" + } ] + }, { + "catenaXId" : "urn:uuid:11990aba-ca76-4d91-a45a-e388f169e7dc", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:11990aba-ca76-4d91-a45a-e388f169e7dc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-247515153102091155664832", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:11990aba-ca76-4d91-a45a-e388f169e7dc", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-247515153102091155664832", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:11990aba-ca76-4d91-a45a-e388f169e7dc" ] + }, + "id" : "urn:uuid:f926f641-1ada-4daa-ad40-d15066992873" + } ] + }, { + "catenaXId" : "urn:uuid:0c1f5873-9464-41fd-b935-ba657603c2b1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0c1f5873-9464-41fd-b935-ba657603c2b1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-573572157494111337386550", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0c1f5873-9464-41fd-b935-ba657603c2b1", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-573572157494111337386550", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0c1f5873-9464-41fd-b935-ba657603c2b1" ] + }, + "id" : "urn:uuid:7db858f1-bceb-409a-a835-1127b1b8b415" + } ] + }, { + "catenaXId" : "urn:uuid:49279f9e-e262-4825-99de-b3e86140b9eb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:49279f9e-e262-4825-99de-b3e86140b9eb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-864606923191635035006452", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:49279f9e-e262-4825-99de-b3e86140b9eb", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-864606923191635035006452", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:49279f9e-e262-4825-99de-b3e86140b9eb" ] + }, + "id" : "urn:uuid:797bb186-38ae-4312-aaec-408ab512a613" + } ] + }, { + "catenaXId" : "urn:uuid:485f6756-9cf9-46c0-b320-17e88823c87f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:485f6756-9cf9-46c0-b320-17e88823c87f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-894978965806890370703667", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:485f6756-9cf9-46c0-b320-17e88823c87f", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-894978965806890370703667", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:485f6756-9cf9-46c0-b320-17e88823c87f" ] + }, + "id" : "urn:uuid:0fa46b2e-561f-4947-a0db-430e7efec162" + } ] + }, { + "catenaXId" : "urn:uuid:17f2667c-b44a-4695-a282-2fd3b460ae2c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:17f2667c-b44a-4695-a282-2fd3b460ae2c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-211418174124304013946136", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:17f2667c-b44a-4695-a282-2fd3b460ae2c", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-211418174124304013946136", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:17f2667c-b44a-4695-a282-2fd3b460ae2c" ] + }, + "id" : "urn:uuid:2596f17c-bd05-4f90-98e9-106ed361d8f2" + } ] + }, { + "catenaXId" : "urn:uuid:c91e18fb-c0f8-4e3e-9e1b-0312f440d29d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c91e18fb-c0f8-4e3e-9e1b-0312f440d29d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-538197444292973342070528", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c91e18fb-c0f8-4e3e-9e1b-0312f440d29d", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-538197444292973342070528", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c91e18fb-c0f8-4e3e-9e1b-0312f440d29d" ] + }, + "id" : "urn:uuid:e4fd4b5f-7ef2-41ff-8b58-d49bcfa2f934" + } ] + }, { + "catenaXId" : "urn:uuid:e5d7dc94-c823-4581-8623-cd5513879197", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e5d7dc94-c823-4581-8623-cd5513879197" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-445140707319914557393610", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e5d7dc94-c823-4581-8623-cd5513879197", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-445140707319914557393610", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e5d7dc94-c823-4581-8623-cd5513879197" ] + }, + "id" : "urn:uuid:9d37b534-bfea-40b9-9a5d-e650d6a6bddc" + } ] + }, { + "catenaXId" : "urn:uuid:885e7021-3e57-48a9-a11a-c511e8295cdc", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:885e7021-3e57-48a9-a11a-c511e8295cdc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-169606374243256821927488", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:885e7021-3e57-48a9-a11a-c511e8295cdc", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-169606374243256821927488", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:885e7021-3e57-48a9-a11a-c511e8295cdc" ] + }, + "id" : "urn:uuid:401fbb77-fcb9-4923-a6ad-8507c37b7d43" + } ] + }, { + "catenaXId" : "urn:uuid:ae0ffb80-d877-4320-8acc-7be7cf64955d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ae0ffb80-d877-4320-8acc-7be7cf64955d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-907514991391794656564719", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ae0ffb80-d877-4320-8acc-7be7cf64955d", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-907514991391794656564719", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ae0ffb80-d877-4320-8acc-7be7cf64955d" ] + }, + "id" : "urn:uuid:f2ac81c2-f7cd-4583-b8d5-2e7d23ff39e3" + } ] + }, { + "catenaXId" : "urn:uuid:e74641a6-fa74-497a-8819-70fc58a38122", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e74641a6-fa74-497a-8819-70fc58a38122" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-331660326186568115580850", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e74641a6-fa74-497a-8819-70fc58a38122", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-331660326186568115580850", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e74641a6-fa74-497a-8819-70fc58a38122" ] + }, + "id" : "urn:uuid:7d0b57cc-57ff-4e75-b74d-43671dcbcf45" + } ] + }, { + "catenaXId" : "urn:uuid:f3c6a1f1-1c90-45b7-be94-67032d24cef5", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f3c6a1f1-1c90-45b7-be94-67032d24cef5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-113010557320242990823681", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f3c6a1f1-1c90-45b7-be94-67032d24cef5", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-113010557320242990823681", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f3c6a1f1-1c90-45b7-be94-67032d24cef5" ] + }, + "id" : "urn:uuid:af09756c-bfee-465f-9467-f071d6eeda30" + } ] + }, { + "catenaXId" : "urn:uuid:22d80cc9-f9dd-40b1-a4e7-5fd23f987c9a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:22d80cc9-f9dd-40b1-a4e7-5fd23f987c9a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-271076126115104704309431", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:22d80cc9-f9dd-40b1-a4e7-5fd23f987c9a", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-271076126115104704309431", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:22d80cc9-f9dd-40b1-a4e7-5fd23f987c9a" ] + }, + "id" : "urn:uuid:903782a0-6f57-4d69-94d6-a5bebe90a94d" + } ] + }, { + "catenaXId" : "urn:uuid:7d31f16b-1a0b-4e11-9a07-00c75e8d5bb6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7d31f16b-1a0b-4e11-9a07-00c75e8d5bb6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-158732680083193772882914", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7d31f16b-1a0b-4e11-9a07-00c75e8d5bb6", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-158732680083193772882914", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7d31f16b-1a0b-4e11-9a07-00c75e8d5bb6" ] + }, + "id" : "urn:uuid:4f8d182c-76a2-476b-80a4-77792c41177b" + } ] + }, { + "catenaXId" : "urn:uuid:8406fdf7-3dfb-44d6-b607-a5457ef09869", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8406fdf7-3dfb-44d6-b607-a5457ef09869" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-697620331000148287216511", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8406fdf7-3dfb-44d6-b607-a5457ef09869", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-697620331000148287216511", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8406fdf7-3dfb-44d6-b607-a5457ef09869" ] + }, + "id" : "urn:uuid:c4165974-0776-4d1c-a846-570db9971859" + } ] + }, { + "catenaXId" : "urn:uuid:560c7ebb-6fa6-42cc-b28c-e82e68b65fd6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:560c7ebb-6fa6-42cc-b28c-e82e68b65fd6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-691119813318925810951994", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:560c7ebb-6fa6-42cc-b28c-e82e68b65fd6", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-691119813318925810951994", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:560c7ebb-6fa6-42cc-b28c-e82e68b65fd6" ] + }, + "id" : "urn:uuid:36acccab-b218-4e2f-8c53-b9f4fd78154d" + } ] + }, { + "catenaXId" : "urn:uuid:0984aed2-c565-443f-aea0-58cff1175b77", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0984aed2-c565-443f-aea0-58cff1175b77" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-464845974530654309829636", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0984aed2-c565-443f-aea0-58cff1175b77", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-464845974530654309829636", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0984aed2-c565-443f-aea0-58cff1175b77" ] + }, + "id" : "urn:uuid:746c923d-c9b8-4fd5-bcf0-59ccd25be152" + } ] + }, { + "catenaXId" : "urn:uuid:7afb4a8e-bb54-4c4a-abae-567e5ef71821", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7afb4a8e-bb54-4c4a-abae-567e5ef71821" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-180224318610831225659534", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7afb4a8e-bb54-4c4a-abae-567e5ef71821", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-180224318610831225659534", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7afb4a8e-bb54-4c4a-abae-567e5ef71821" ] + }, + "id" : "urn:uuid:930ba4c2-4bc1-4d21-a751-30c26a88a387" + } ] + }, { + "catenaXId" : "urn:uuid:614a3051-8769-44a0-b255-cbde33923604", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:614a3051-8769-44a0-b255-cbde33923604" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-255001366404444269206773", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:614a3051-8769-44a0-b255-cbde33923604", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-255001366404444269206773", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:614a3051-8769-44a0-b255-cbde33923604" ] + }, + "id" : "urn:uuid:6e9282a4-a553-4590-bf4a-ae4dae407be6" + } ] + }, { + "catenaXId" : "urn:uuid:f6448ec2-dbda-41bb-9202-3b75726c93a2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f6448ec2-dbda-41bb-9202-3b75726c93a2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-624243816431689589609382", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f6448ec2-dbda-41bb-9202-3b75726c93a2", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-624243816431689589609382", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f6448ec2-dbda-41bb-9202-3b75726c93a2" ] + }, + "id" : "urn:uuid:24ce7c0c-7c0b-4382-96e9-59bd923e2150" + } ] + }, { + "catenaXId" : "urn:uuid:16609a10-6e4a-4720-8c02-26d85f7d84fc", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:16609a10-6e4a-4720-8c02-26d85f7d84fc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-206091995088783115032556", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:16609a10-6e4a-4720-8c02-26d85f7d84fc", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-206091995088783115032556", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:16609a10-6e4a-4720-8c02-26d85f7d84fc" ] + }, + "id" : "urn:uuid:5803e364-37d8-40f3-8484-a55b6b1480c9" + } ] + }, { + "catenaXId" : "urn:uuid:6e687f1d-71ea-43b2-8f80-7121c0b3353f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6e687f1d-71ea-43b2-8f80-7121c0b3353f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-079831274080649866254845", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6e687f1d-71ea-43b2-8f80-7121c0b3353f", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-079831274080649866254845", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6e687f1d-71ea-43b2-8f80-7121c0b3353f" ] + }, + "id" : "urn:uuid:3a00e70c-ab4f-47e3-a81c-647947aec5ff" + } ] + }, { + "catenaXId" : "urn:uuid:07407037-cffe-4412-b397-b8e87bd33594", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:07407037-cffe-4412-b397-b8e87bd33594" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-389212263767325673729565", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:07407037-cffe-4412-b397-b8e87bd33594", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-389212263767325673729565", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:07407037-cffe-4412-b397-b8e87bd33594" ] + }, + "id" : "urn:uuid:173b5af8-2ede-463b-895e-bdbac92d9c45" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", + "childItems" : [ { + "catenaXId" : "urn:uuid:e7de1d4d-9a25-4961-8620-ae04bdc6cbcd", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a5a97c77-a736-4c80-b8c6-21a1155fde6c", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-176089714392344448074423", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-176089714392344448074423", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-176089714392344448074423", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268" ] + }, + "id" : "urn:uuid:8273953d-b3cc-4cd6-9346-bba0880c6740" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 64, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 33, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 5, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e7de1d4d-9a25-4961-8620-ae04bdc6cbcd", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e7de1d4d-9a25-4961-8620-ae04bdc6cbcd" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "70486G2-65", + "key" : "manufacturerPartId" + }, { + "value" : "NO-208920986503030847050471", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e7de1d4d-9a25-4961-8620-ae04bdc6cbcd", + "partTypeInformation" : { + "manufacturerPartId" : "70486G2-65", + "customerPartId" : "70486G2-65", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 34, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 21, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052", + "childItems" : [ { + "catenaXId" : "urn:uuid:f36e139a-125a-4956-a0c8-fdbcdd30bb09", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "41029C3-80", + "key" : "manufacturerPartId" + }, { + "value" : "NO-037128433107839743020327", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052", + "partTypeInformation" : { + "manufacturerPartId" : "41029C3-80", + "customerPartId" : "41029C3-80", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-037128433107839743020327", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "41029C3-80", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052" ] + }, + "id" : "urn:uuid:8012f243-d64e-4910-b44a-7e1e1df82eca" + } ] + }, { + "catenaXId" : "urn:uuid:f36e139a-125a-4956-a0c8-fdbcdd30bb09", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f36e139a-125a-4956-a0c8-fdbcdd30bb09" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "88243K2-55", + "key" : "manufacturerPartId" + }, { + "value" : "NO-909634664720626801580806", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f36e139a-125a-4956-a0c8-fdbcdd30bb09", + "partTypeInformation" : { + "manufacturerPartId" : "88243K2-55", + "customerPartId" : "88243K2-55", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 82, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 28, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5a97c77-a736-4c80-b8c6-21a1155fde6c", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:a5a97c77-a736-4c80-b8c6-21a1155fde6c", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a5a97c77-a736-4c80-b8c6-21a1155fde6c" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "84321K9-96", + "key" : "manufacturerPartId" + }, { + "value" : "NO-344045917052952319720020", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a5a97c77-a736-4c80-b8c6-21a1155fde6c", + "partTypeInformation" : { + "manufacturerPartId" : "84321K9-96", + "customerPartId" : "84321K9-96", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a", + "childItems" : [ { + "catenaXId" : "urn:uuid:a34728e8-50b6-42b1-9bbe-35442e0966b3", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d93f6a9d-49c7-4297-82ff-280bddb3e41e", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "54133K4-29", + "key" : "manufacturerPartId" + }, { + "value" : "NO-616185100222716381599426", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a", + "partTypeInformation" : { + "manufacturerPartId" : "54133K4-29", + "customerPartId" : "54133K4-29", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-616185100222716381599426", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54133K4-29", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a" ] + }, + "id" : "urn:uuid:ad37ff56-bbfd-4d83-a0f6-0d2dde953e00" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 26, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a34728e8-50b6-42b1-9bbe-35442e0966b3", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a34728e8-50b6-42b1-9bbe-35442e0966b3" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "17930H5-79", + "key" : "manufacturerPartId" + }, { + "value" : "NO-104531933059071606535833", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a34728e8-50b6-42b1-9bbe-35442e0966b3", + "partTypeInformation" : { + "manufacturerPartId" : "17930H5-79", + "customerPartId" : "17930H5-79", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 82, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 22, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8", + "childItems" : [ { + "catenaXId" : "urn:uuid:4aa12612-8cff-4de0-81ac-4eeca63157e9", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "69872W0-38", + "key" : "manufacturerPartId" + }, { + "value" : "NO-230664487856914611133239", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8", + "partTypeInformation" : { + "manufacturerPartId" : "69872W0-38", + "customerPartId" : "69872W0-38", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-230664487856914611133239", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "69872W0-38", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8" ] + }, + "id" : "urn:uuid:0a53dab0-1e3a-4718-8903-95d1db3d811c" + } ] + }, { + "catenaXId" : "urn:uuid:4aa12612-8cff-4de0-81ac-4eeca63157e9", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4aa12612-8cff-4de0-81ac-4eeca63157e9" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "77809X3-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-719899027004416550956244", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4aa12612-8cff-4de0-81ac-4eeca63157e9", + "partTypeInformation" : { + "manufacturerPartId" : "77809X3-23", + "customerPartId" : "77809X3-23", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 80, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 38, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d93f6a9d-49c7-4297-82ff-280bddb3e41e", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d93f6a9d-49c7-4297-82ff-280bddb3e41e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "16804G9-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-633381851961249557112064", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d93f6a9d-49c7-4297-82ff-280bddb3e41e", + "partTypeInformation" : { + "manufacturerPartId" : "16804G9-35", + "customerPartId" : "16804G9-35", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-633381851961249557112064", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "16804G9-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d93f6a9d-49c7-4297-82ff-280bddb3e41e" ] + }, + "id" : "urn:uuid:733c59c3-aea3-4878-bbb6-9023bf40affb" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 69, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 4, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "engine" : { + "size" : 2998, + "power" : 154 + }, + "emptyWeight" : 1.79, + "fuel" : "petrol", + "vehicleModel" : "Vehicle Combustion", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "childItems" : [ { + "catenaXId" : "urn:uuid:de905fdb-49cf-4633-a086-115f9bfdf546", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:914b436b-c1c4-4ebd-b414-373525c53f9a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a1e6f72d-485d-46d5-ad10-e73e8a303a73", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:82a0364b-d70a-4824-bc33-59acde5b15bd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b94ee658-c50b-44fc-92bb-a33738556a47", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b1d5d81e-f9fb-424a-aae8-e6a4efc5bc86", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00e7cc1c-3ae1-447f-8136-878c1d218a4d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:19e60826-4c03-4f90-9126-e5a845df998e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2dc8c038-beb4-40d0-bb98-5db46f3ff9c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:facfe7b9-d60d-422a-a02f-0e62d5cb53fe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f45ea971-f663-46cd-8724-aaec2a64b1ab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2ff36c92-b53f-4593-bdaf-eda190304add", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6b33bddf-efee-4765-8860-5efd70e0a200", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8e40ffda-4ed9-4610-8547-6f802637a831", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ba7728a1-dea2-4c3e-99a6-1ad23a14b6b8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f72b16ff-28f6-40cc-9065-ebc022f79455", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:143d4048-6f5e-409d-931b-e6e2c530e261", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6da731cd-dba9-460d-8112-c28469b849ce", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6f067dc2-6915-4b23-9706-e796e718461f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:643ebb6a-62ad-4061-8172-e3fa0488bff1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:235345aa-4748-431a-b051-ca43c76bde73", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1791d4f5-134a-4083-9e1b-322f1a09a459", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1801af6f-1f32-4aa9-b8c6-a4fa4654126b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1b44b453-de0a-4ba5-a0c1-348cf1eb7253", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6b89263b-0d25-4f72-9af7-238a2a02c179", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e8eb41ce-6d94-45c9-8a11-5b2d4cdaab66", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fca4d2b3-69d5-487d-8eff-cec7402382c8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:84fe981f-2696-4bf4-9e14-ca0d86b40fbc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1073432c-3eb4-40e0-91fd-dc41b7c4d7c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:175e94c0-dcda-465b-a896-81a2a9b28262", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "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" + } ], + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "QI-51", + "key" : "manufacturerPartId" + }, { + "value" : "OMBGHXHATHICIEYOU", + "key" : "partInstanceId" + }, { + "value" : "OMBGHXHATHICIEYOU", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2019-03-15T08:39:02.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "partTypeInformation" : { + "manufacturerPartId" : "QI-51", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMBGHXHATHICIEYOU", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "QI-51", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_combustion.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Combustion" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, + "id" : "urn:uuid:3987c9ec-3ac6-4507-a58d-d6835ee58295" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 73, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 53, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 35, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 44, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 53, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 80, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 59, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 41, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 45, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 14, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:de905fdb-49cf-4633-a086-115f9bfdf546", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:de905fdb-49cf-4633-a086-115f9bfdf546" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-529374502913280509043997", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:de905fdb-49cf-4633-a086-115f9bfdf546", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-529374502913280509043997", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:de905fdb-49cf-4633-a086-115f9bfdf546" ] + }, + "id" : "urn:uuid:f95ec50a-b0ba-495c-9b04-e7a571bdb229" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:914b436b-c1c4-4ebd-b414-373525c53f9a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:914b436b-c1c4-4ebd-b414-373525c53f9a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-430483861129696977967837", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:914b436b-c1c4-4ebd-b414-373525c53f9a", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-430483861129696977967837", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:914b436b-c1c4-4ebd-b414-373525c53f9a" ] + }, + "id" : "urn:uuid:da51677e-2f5e-4c89-9ac3-c933e9c559f3" + } ] + }, { + "catenaXId" : "urn:uuid:a1e6f72d-485d-46d5-ad10-e73e8a303a73", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a1e6f72d-485d-46d5-ad10-e73e8a303a73" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-179430790749792350989557", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a1e6f72d-485d-46d5-ad10-e73e8a303a73", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-179430790749792350989557", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a1e6f72d-485d-46d5-ad10-e73e8a303a73" ] + }, + "id" : "urn:uuid:4c7233ac-c998-4c0d-abcb-3ab3a12b2578" + } ] + }, { + "catenaXId" : "urn:uuid:82a0364b-d70a-4824-bc33-59acde5b15bd", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:82a0364b-d70a-4824-bc33-59acde5b15bd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-920105191949093854154030", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:82a0364b-d70a-4824-bc33-59acde5b15bd", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-920105191949093854154030", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:82a0364b-d70a-4824-bc33-59acde5b15bd" ] + }, + "id" : "urn:uuid:2c03fee8-cbef-4733-8d04-47cdfe22e80a" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe", + "childItems" : [ { + "catenaXId" : "urn:uuid:3bad2d78-e6cc-4154-a26e-fe833c42124d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-382512198076387407534864", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-382512198076387407534864", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe" ] + }, + "id" : "urn:uuid:8bd7e069-c6ae-4f9e-b809-c4a156cd5c7f" + } ] + }, { + "catenaXId" : "urn:uuid:3bad2d78-e6cc-4154-a26e-fe833c42124d", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3bad2d78-e6cc-4154-a26e-fe833c42124d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-048283433806560817911989", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3bad2d78-e6cc-4154-a26e-fe833c42124d", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-048283433806560817911989", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3bad2d78-e6cc-4154-a26e-fe833c42124d" ] + }, + "id" : "urn:uuid:f1f628aa-231b-473d-b6f9-9fb1c0b89dd1" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0", + "childItems" : [ { + "catenaXId" : "urn:uuid:53eca8e7-8031-4220-a6b8-f927f0364fe8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-254062627702227530828427", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-254062627702227530828427", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0" ] + }, + "id" : "urn:uuid:6ecaeaa4-8344-4616-b437-0b03d518d960" + } ] + }, { + "catenaXId" : "urn:uuid:53eca8e7-8031-4220-a6b8-f927f0364fe8", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:53eca8e7-8031-4220-a6b8-f927f0364fe8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-290426418638624106715162", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:53eca8e7-8031-4220-a6b8-f927f0364fe8", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-290426418638624106715162", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:53eca8e7-8031-4220-a6b8-f927f0364fe8" ] + }, + "id" : "urn:uuid:6ff0a5ee-a470-4325-98fa-ea12a9a02cbb" + } ] + }, { + "catenaXId" : "urn:uuid:b94ee658-c50b-44fc-92bb-a33738556a47", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b94ee658-c50b-44fc-92bb-a33738556a47" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-582953477985482537778251", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b94ee658-c50b-44fc-92bb-a33738556a47", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-582953477985482537778251", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b94ee658-c50b-44fc-92bb-a33738556a47" ] + }, + "id" : "urn:uuid:b90247b3-33e9-46ff-889d-17e132e66eab" + } ] + }, { + "catenaXId" : "urn:uuid:b1d5d81e-f9fb-424a-aae8-e6a4efc5bc86", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b1d5d81e-f9fb-424a-aae8-e6a4efc5bc86" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-771174675489466758969418", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b1d5d81e-f9fb-424a-aae8-e6a4efc5bc86", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-771174675489466758969418", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b1d5d81e-f9fb-424a-aae8-e6a4efc5bc86" ] + }, + "id" : "urn:uuid:88d8cf8b-ea3b-4863-9b58-74c6bd2ee811" + } ] + }, { + "catenaXId" : "urn:uuid:00e7cc1c-3ae1-447f-8136-878c1d218a4d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00e7cc1c-3ae1-447f-8136-878c1d218a4d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-366974876520532427624182", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00e7cc1c-3ae1-447f-8136-878c1d218a4d", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-366974876520532427624182", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:00e7cc1c-3ae1-447f-8136-878c1d218a4d" ] + }, + "id" : "urn:uuid:e4a3f244-06d5-400b-aab2-bb9685238081" + } ] + }, { + "catenaXId" : "urn:uuid:19e60826-4c03-4f90-9126-e5a845df998e", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:19e60826-4c03-4f90-9126-e5a845df998e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-705545365523795969180039", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:19e60826-4c03-4f90-9126-e5a845df998e", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-705545365523795969180039", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:19e60826-4c03-4f90-9126-e5a845df998e" ] + }, + "id" : "urn:uuid:52cc818f-bd8f-42bd-b5c5-5eb2eeda21bc" + } ] + }, { + "catenaXId" : "urn:uuid:2dc8c038-beb4-40d0-bb98-5db46f3ff9c6", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2dc8c038-beb4-40d0-bb98-5db46f3ff9c6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-226168879856159077415692", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2dc8c038-beb4-40d0-bb98-5db46f3ff9c6", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-226168879856159077415692", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2dc8c038-beb4-40d0-bb98-5db46f3ff9c6" ] + }, + "id" : "urn:uuid:62246b5d-266e-4e9f-a0af-4f8358127bc5" + } ] + }, { + "catenaXId" : "urn:uuid:facfe7b9-d60d-422a-a02f-0e62d5cb53fe", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:facfe7b9-d60d-422a-a02f-0e62d5cb53fe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-180272295172842622944486", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:facfe7b9-d60d-422a-a02f-0e62d5cb53fe", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-180272295172842622944486", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:facfe7b9-d60d-422a-a02f-0e62d5cb53fe" ] + }, + "id" : "urn:uuid:b1f6185c-2ddb-4091-b211-436b01feee3e" + } ] + }, { + "catenaXId" : "urn:uuid:f45ea971-f663-46cd-8724-aaec2a64b1ab", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f45ea971-f663-46cd-8724-aaec2a64b1ab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-140011173913723580941604", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f45ea971-f663-46cd-8724-aaec2a64b1ab", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-140011173913723580941604", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f45ea971-f663-46cd-8724-aaec2a64b1ab" ] + }, + "id" : "urn:uuid:eba3b3e1-1017-41b3-8874-10c3224ea61c" + } ] + }, { + "catenaXId" : "urn:uuid:2ff36c92-b53f-4593-bdaf-eda190304add", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2ff36c92-b53f-4593-bdaf-eda190304add" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-647921174441651963916922", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2ff36c92-b53f-4593-bdaf-eda190304add", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-647921174441651963916922", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2ff36c92-b53f-4593-bdaf-eda190304add" ] + }, + "id" : "urn:uuid:1129bd3e-e180-4b4c-9582-f7530d46590f" + } ] + }, { + "catenaXId" : "urn:uuid:6b33bddf-efee-4765-8860-5efd70e0a200", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6b33bddf-efee-4765-8860-5efd70e0a200" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-028894234382624309527307", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6b33bddf-efee-4765-8860-5efd70e0a200", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-028894234382624309527307", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6b33bddf-efee-4765-8860-5efd70e0a200" ] + }, + "id" : "urn:uuid:b97f4297-4baa-4426-8094-3fc53a75dc40" + } ] + }, { + "catenaXId" : "urn:uuid:8e40ffda-4ed9-4610-8547-6f802637a831", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8e40ffda-4ed9-4610-8547-6f802637a831" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-400995071234464201470075", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8e40ffda-4ed9-4610-8547-6f802637a831", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-400995071234464201470075", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8e40ffda-4ed9-4610-8547-6f802637a831" ] + }, + "id" : "urn:uuid:10e26784-5f22-4d24-96cd-81953d852e87" + } ] + }, { + "catenaXId" : "urn:uuid:ba7728a1-dea2-4c3e-99a6-1ad23a14b6b8", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ba7728a1-dea2-4c3e-99a6-1ad23a14b6b8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-211209728808569122059387", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ba7728a1-dea2-4c3e-99a6-1ad23a14b6b8", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-211209728808569122059387", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ba7728a1-dea2-4c3e-99a6-1ad23a14b6b8" ] + }, + "id" : "urn:uuid:7465f7fc-da1b-4183-9e77-234d83ddb8b4" + } ] + }, { + "catenaXId" : "urn:uuid:f72b16ff-28f6-40cc-9065-ebc022f79455", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f72b16ff-28f6-40cc-9065-ebc022f79455" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-394318733886290346364253", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f72b16ff-28f6-40cc-9065-ebc022f79455", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-394318733886290346364253", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f72b16ff-28f6-40cc-9065-ebc022f79455" ] + }, + "id" : "urn:uuid:b66d3a1f-c82f-4212-9e01-02d46485a8c6" + } ] + }, { + "catenaXId" : "urn:uuid:143d4048-6f5e-409d-931b-e6e2c530e261", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:143d4048-6f5e-409d-931b-e6e2c530e261" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-121852472508064694948845", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:143d4048-6f5e-409d-931b-e6e2c530e261", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-121852472508064694948845", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:143d4048-6f5e-409d-931b-e6e2c530e261" ] + }, + "id" : "urn:uuid:07592e7b-f4c5-4b3d-b868-2ebac1916088" + } ] + }, { + "catenaXId" : "urn:uuid:6da731cd-dba9-460d-8112-c28469b849ce", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6da731cd-dba9-460d-8112-c28469b849ce" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-258834435253070113435162", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6da731cd-dba9-460d-8112-c28469b849ce", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-258834435253070113435162", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6da731cd-dba9-460d-8112-c28469b849ce" ] + }, + "id" : "urn:uuid:026d80e6-c98c-4d59-b73b-11c53a7faff7" + } ] + }, { + "catenaXId" : "urn:uuid:6f067dc2-6915-4b23-9706-e796e718461f", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f067dc2-6915-4b23-9706-e796e718461f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-284611812166631529160312", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f067dc2-6915-4b23-9706-e796e718461f", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-284611812166631529160312", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6f067dc2-6915-4b23-9706-e796e718461f" ] + }, + "id" : "urn:uuid:ba27ac2d-ebe6-4788-ade6-2f21666e5292" + } ] + }, { + "catenaXId" : "urn:uuid:643ebb6a-62ad-4061-8172-e3fa0488bff1", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:643ebb6a-62ad-4061-8172-e3fa0488bff1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-822723901972880724268014", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:643ebb6a-62ad-4061-8172-e3fa0488bff1", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-822723901972880724268014", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:643ebb6a-62ad-4061-8172-e3fa0488bff1" ] + }, + "id" : "urn:uuid:11bc536d-e18d-4ae7-ba3f-f71d04c1a532" + } ] + }, { + "catenaXId" : "urn:uuid:235345aa-4748-431a-b051-ca43c76bde73", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:235345aa-4748-431a-b051-ca43c76bde73" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-582791912704972784204452", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:235345aa-4748-431a-b051-ca43c76bde73", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-582791912704972784204452", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:235345aa-4748-431a-b051-ca43c76bde73" ] + }, + "id" : "urn:uuid:3365c6ce-1331-45b2-b10f-0fdd8388c714" + } ] + }, { + "catenaXId" : "urn:uuid:1791d4f5-134a-4083-9e1b-322f1a09a459", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1791d4f5-134a-4083-9e1b-322f1a09a459" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-508030323922618580184120", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1791d4f5-134a-4083-9e1b-322f1a09a459", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-508030323922618580184120", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1791d4f5-134a-4083-9e1b-322f1a09a459" ] + }, + "id" : "urn:uuid:d5764f89-6064-4c45-b55f-90ff302c0d20" + } ] + }, { + "catenaXId" : "urn:uuid:1801af6f-1f32-4aa9-b8c6-a4fa4654126b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1801af6f-1f32-4aa9-b8c6-a4fa4654126b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-128809003604473640662933", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1801af6f-1f32-4aa9-b8c6-a4fa4654126b", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-128809003604473640662933", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1801af6f-1f32-4aa9-b8c6-a4fa4654126b" ] + }, + "id" : "urn:uuid:9b6b3d2e-0e5a-4a41-9ef7-df26b8dd250e" + } ] + }, { + "catenaXId" : "urn:uuid:1b44b453-de0a-4ba5-a0c1-348cf1eb7253", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1b44b453-de0a-4ba5-a0c1-348cf1eb7253" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-650956026820276073664700", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1b44b453-de0a-4ba5-a0c1-348cf1eb7253", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-650956026820276073664700", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1b44b453-de0a-4ba5-a0c1-348cf1eb7253" ] + }, + "id" : "urn:uuid:6b851b67-6c06-4718-b837-8545b4ece4c2" + } ] + }, { + "catenaXId" : "urn:uuid:6b89263b-0d25-4f72-9af7-238a2a02c179", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6b89263b-0d25-4f72-9af7-238a2a02c179" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-442058923755774038737090", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6b89263b-0d25-4f72-9af7-238a2a02c179", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-442058923755774038737090", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6b89263b-0d25-4f72-9af7-238a2a02c179" ] + }, + "id" : "urn:uuid:fa8dacf1-9b86-4156-bb83-ad299a419a41" + } ] + }, { + "catenaXId" : "urn:uuid:e8eb41ce-6d94-45c9-8a11-5b2d4cdaab66", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e8eb41ce-6d94-45c9-8a11-5b2d4cdaab66" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-417096599070536580249035", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e8eb41ce-6d94-45c9-8a11-5b2d4cdaab66", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-417096599070536580249035", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e8eb41ce-6d94-45c9-8a11-5b2d4cdaab66" ] + }, + "id" : "urn:uuid:03de8563-3a83-4537-a782-a66fe7b3d0d7" + } ] + }, { + "catenaXId" : "urn:uuid:fca4d2b3-69d5-487d-8eff-cec7402382c8", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fca4d2b3-69d5-487d-8eff-cec7402382c8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-827840657060250938914675", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fca4d2b3-69d5-487d-8eff-cec7402382c8", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-827840657060250938914675", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fca4d2b3-69d5-487d-8eff-cec7402382c8" ] + }, + "id" : "urn:uuid:7fa0bf43-8a59-4bec-adff-166d1be3b3b3" + } ] + }, { + "catenaXId" : "urn:uuid:84fe981f-2696-4bf4-9e14-ca0d86b40fbc", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:84fe981f-2696-4bf4-9e14-ca0d86b40fbc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-161852622399154039680147", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:84fe981f-2696-4bf4-9e14-ca0d86b40fbc", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-161852622399154039680147", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:84fe981f-2696-4bf4-9e14-ca0d86b40fbc" ] + }, + "id" : "urn:uuid:30420e61-acf9-4608-9417-8b3a2e1d87a1" + } ] + }, { + "catenaXId" : "urn:uuid:1073432c-3eb4-40e0-91fd-dc41b7c4d7c0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1073432c-3eb4-40e0-91fd-dc41b7c4d7c0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-942270535281755854871296", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1073432c-3eb4-40e0-91fd-dc41b7c4d7c0", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-942270535281755854871296", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1073432c-3eb4-40e0-91fd-dc41b7c4d7c0" ] + }, + "id" : "urn:uuid:4db95e5d-47a2-4282-87c1-55c4a448fbdd" + } ] + }, { + "catenaXId" : "urn:uuid:175e94c0-dcda-465b-a896-81a2a9b28262", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:175e94c0-dcda-465b-a896-81a2a9b28262" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-241847245233169887096131", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:175e94c0-dcda-465b-a896-81a2a9b28262", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-241847245233169887096131", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:175e94c0-dcda-465b-a896-81a2a9b28262" ] + }, + "id" : "urn:uuid:d8cb5e8f-5a37-4d4a-a6c7-412d9475f2ee" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", + "childItems" : [ { + "catenaXId" : "urn:uuid:67243366-b385-4dce-94e3-b50cf732e9f2", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7a115f4e-eec1-4eff-aeda-64bf13fdb33d", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-757749580679400763213350", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-757749580679400763213350", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-757749580679400763213350", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629" ] + }, + "id" : "urn:uuid:d1e79e93-4eda-4090-b4ee-93a2b883b946" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 40, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 25, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 24, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:67243366-b385-4dce-94e3-b50cf732e9f2", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:67243366-b385-4dce-94e3-b50cf732e9f2" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "14586T2-07", + "key" : "manufacturerPartId" + }, { + "value" : "NO-044809120325639116951096", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:67243366-b385-4dce-94e3-b50cf732e9f2", + "partTypeInformation" : { + "manufacturerPartId" : "14586T2-07", + "customerPartId" : "14586T2-07", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 52, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 57, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6", + "childItems" : [ { + "catenaXId" : "urn:uuid:880bcd50-5863-40bc-a783-923ea1a463ee", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "32641X8-33", + "key" : "manufacturerPartId" + }, { + "value" : "NO-309127276858065909791006", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6", + "partTypeInformation" : { + "manufacturerPartId" : "32641X8-33", + "customerPartId" : "32641X8-33", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-309127276858065909791006", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32641X8-33", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6" ] + }, + "id" : "urn:uuid:f1ac2611-76f5-4fb9-aee7-842cb7b90a5d" + } ] + }, { + "catenaXId" : "urn:uuid:880bcd50-5863-40bc-a783-923ea1a463ee", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:880bcd50-5863-40bc-a783-923ea1a463ee" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "26000C3-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-418908979738323393315343", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:880bcd50-5863-40bc-a783-923ea1a463ee", + "partTypeInformation" : { + "manufacturerPartId" : "26000C3-60", + "customerPartId" : "26000C3-60", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 70, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 38, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7a115f4e-eec1-4eff-aeda-64bf13fdb33d", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:7a115f4e-eec1-4eff-aeda-64bf13fdb33d", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7a115f4e-eec1-4eff-aeda-64bf13fdb33d" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "89766T7-70", + "key" : "manufacturerPartId" + }, { + "value" : "NO-395907751699589298373999", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7a115f4e-eec1-4eff-aeda-64bf13fdb33d", + "partTypeInformation" : { + "manufacturerPartId" : "89766T7-70", + "customerPartId" : "89766T7-70", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202", + "childItems" : [ { + "catenaXId" : "urn:uuid:6752c819-cf99-42fe-adc0-cfad0902850f", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:facb06ab-db55-41c6-b75e-eafb719641cf", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "21416G0-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-447200807022128540541173", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202", + "partTypeInformation" : { + "manufacturerPartId" : "21416G0-24", + "customerPartId" : "21416G0-24", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-447200807022128540541173", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "21416G0-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202" ] + }, + "id" : "urn:uuid:49661db3-26d2-4290-b095-d521885e0768" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 38, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:6752c819-cf99-42fe-adc0-cfad0902850f", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6752c819-cf99-42fe-adc0-cfad0902850f" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "69137H7-33", + "key" : "manufacturerPartId" + }, { + "value" : "NO-850210722056064080327015", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6752c819-cf99-42fe-adc0-cfad0902850f", + "partTypeInformation" : { + "manufacturerPartId" : "69137H7-33", + "customerPartId" : "69137H7-33", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 31, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 54, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b", + "childItems" : [ { + "catenaXId" : "urn:uuid:730a4154-b1a9-4931-bc5b-b6dc52556ced", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "11500X1-21", + "key" : "manufacturerPartId" + }, { + "value" : "NO-373151698415769237082131", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b", + "partTypeInformation" : { + "manufacturerPartId" : "11500X1-21", + "customerPartId" : "11500X1-21", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-373151698415769237082131", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "11500X1-21", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b" ] + }, + "id" : "urn:uuid:d3461f68-aa3b-47d8-9065-5dc1cc02f720" + } ] + }, { + "catenaXId" : "urn:uuid:730a4154-b1a9-4931-bc5b-b6dc52556ced", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:730a4154-b1a9-4931-bc5b-b6dc52556ced" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "24365N6-05", + "key" : "manufacturerPartId" + }, { + "value" : "NO-369112022169217581074813", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:730a4154-b1a9-4931-bc5b-b6dc52556ced", + "partTypeInformation" : { + "manufacturerPartId" : "24365N6-05", + "customerPartId" : "24365N6-05", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 75, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 57, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:facb06ab-db55-41c6-b75e-eafb719641cf", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:facb06ab-db55-41c6-b75e-eafb719641cf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "52892N1-45", + "key" : "manufacturerPartId" + }, { + "value" : "NO-732306752341378594694672", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:facb06ab-db55-41c6-b75e-eafb719641cf", + "partTypeInformation" : { + "manufacturerPartId" : "52892N1-45", + "customerPartId" : "52892N1-45", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-732306752341378594694672", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "52892N1-45", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:facb06ab-db55-41c6-b75e-eafb719641cf" ] + }, + "id" : "urn:uuid:a5b71097-26ea-4756-8ccf-a2b7afd169fa" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 25, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 50, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "engine" : { + "size" : 2998, + "power" : 154 + }, + "emptyWeight" : 1.79, + "fuel" : "petrol", + "vehicleModel" : "Vehicle Combustion", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + }, { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "childItems" : [ { + "catenaXId" : "urn:uuid:f449ed2f-92cf-40ce-a5b8-e6098ae5bb52", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57850083-6bc9-4a83-b3d3-ca72d4420d07", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:736ca592-a0b0-4394-b538-f251a4224125", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3a49690c-8af4-458a-bd37-0fa5a0519d0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4079114c-10d4-42dc-8de5-7637698c2ad8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:28aeca09-a251-4629-820d-eb047addc9c7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a112ccd8-1476-455d-936b-783b951667ec", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:540c139b-826e-458e-a536-d6a6d3d01d5e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:03958eb2-501d-4356-a03e-e85da90c1f92", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bfa5bc25-e7d3-41b3-9af7-9ba085fed120", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18fc5f13-ae4c-4dcf-9a0d-ca8897ead240", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:979818ab-6f5d-42d9-84aa-5fcbf69a06aa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bdb24ca0-906c-42f8-8be1-82f4411cc501", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c5f253e2-f813-43c9-b889-00f78922d315", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00c8de5a-b6bd-4061-88c1-2484ea3d3090", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3ad6542d-c83e-4250-b3e3-bcfd52c2a0ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:702f242d-0697-4f83-bdfb-e598b36ac10e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e7cb0fdc-2a5f-4d3d-9cf5-a963aad642a3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0789ef4c-dab5-4caf-a0a6-d49bede78019", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7a9adc73-f408-4800-820d-0c82a6bb6b53", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:60bef7ae-f873-40e4-a824-1d0b66a1e19f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:21429e22-60e8-4e2a-9f15-73e1aa0a5f1f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:94165d74-1014-4a92-9798-2caa308e3eec", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b31969df-5274-44fc-a2f3-46eab5162718", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18dee324-3016-4968-bdce-a1338fec49c1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:de28a7b9-0e01-4d7d-8e10-b4eed42cf480", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9f8be7fc-b402-41c7-8d8d-7a527c217a4f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1a067f63-ebbe-4be9-95df-239068ba98d1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dbe29e2e-2b18-4a0d-892b-9232ad4efea4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:24e65ea5-e0fd-4f55-b884-8526887a8dd1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "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" + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "VK-94", + "key" : "manufacturerPartId" + }, { + "value" : "OMAGCJCBDQGPYRQCS", + "key" : "partInstanceId" + }, { + "value" : "OMAGCJCBDQGPYRQCS", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2017-05-26T07:06:51.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "partTypeInformation" : { + "manufacturerPartId" : "VK-94", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMAGCJCBDQGPYRQCS", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "VK-94", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_combustion.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Combustion" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, + "id" : "urn:uuid:84b0380f-5ff7-471e-aa21-a4e5b3aea6f4" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 39, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 33, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 33, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 2, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 27, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 17, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 62, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 57, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 85, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 32, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f449ed2f-92cf-40ce-a5b8-e6098ae5bb52", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f449ed2f-92cf-40ce-a5b8-e6098ae5bb52" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-607579899101714852863561", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f449ed2f-92cf-40ce-a5b8-e6098ae5bb52", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-607579899101714852863561", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f449ed2f-92cf-40ce-a5b8-e6098ae5bb52" ] + }, + "id" : "urn:uuid:10e566c9-264d-4e08-91a1-5c6eb2708f02" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:57850083-6bc9-4a83-b3d3-ca72d4420d07", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57850083-6bc9-4a83-b3d3-ca72d4420d07" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-150015089771528851568455", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57850083-6bc9-4a83-b3d3-ca72d4420d07", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-150015089771528851568455", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:57850083-6bc9-4a83-b3d3-ca72d4420d07" ] + }, + "id" : "urn:uuid:b812b969-4586-4466-81fe-897554a5d991" + } ] + }, { + "catenaXId" : "urn:uuid:736ca592-a0b0-4394-b538-f251a4224125", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:736ca592-a0b0-4394-b538-f251a4224125" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-793217666331569973109799", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:736ca592-a0b0-4394-b538-f251a4224125", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-793217666331569973109799", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:736ca592-a0b0-4394-b538-f251a4224125" ] + }, + "id" : "urn:uuid:cb9768bd-0767-4038-b08d-279e1aea012e" + } ] + }, { + "catenaXId" : "urn:uuid:3a49690c-8af4-458a-bd37-0fa5a0519d0f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3a49690c-8af4-458a-bd37-0fa5a0519d0f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-237791705077588673260413", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3a49690c-8af4-458a-bd37-0fa5a0519d0f", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-237791705077588673260413", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3a49690c-8af4-458a-bd37-0fa5a0519d0f" ] + }, + "id" : "urn:uuid:31f3858b-aadc-4c15-ab87-cbcd45e05405" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020", + "childItems" : [ { + "catenaXId" : "urn:uuid:7625422f-9504-4525-96c4-902cf81613e3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-629354344096652759149355", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-629354344096652759149355", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020" ] + }, + "id" : "urn:uuid:b3de39f9-e535-498f-a8e5-e637ac0ec3b6" + } ] + }, { + "catenaXId" : "urn:uuid:7625422f-9504-4525-96c4-902cf81613e3", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7625422f-9504-4525-96c4-902cf81613e3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-954553431691027621791609", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7625422f-9504-4525-96c4-902cf81613e3", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-954553431691027621791609", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7625422f-9504-4525-96c4-902cf81613e3" ] + }, + "id" : "urn:uuid:254af474-4053-4681-a45f-8490003bf85b" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7", + "childItems" : [ { + "catenaXId" : "urn:uuid:66980e76-b79b-4fcf-9111-5b56261d42bb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-016584928827572317816251", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-016584928827572317816251", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7" ] + }, + "id" : "urn:uuid:407f6b0d-45e3-4045-a1f3-4804f21c4385" + } ] + }, { + "catenaXId" : "urn:uuid:66980e76-b79b-4fcf-9111-5b56261d42bb", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:66980e76-b79b-4fcf-9111-5b56261d42bb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-244494858804314594608869", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:66980e76-b79b-4fcf-9111-5b56261d42bb", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-244494858804314594608869", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:66980e76-b79b-4fcf-9111-5b56261d42bb" ] + }, + "id" : "urn:uuid:364d0a6b-6510-4fc7-99b4-f6dba91c2e04" + } ] + }, { + "catenaXId" : "urn:uuid:4079114c-10d4-42dc-8de5-7637698c2ad8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4079114c-10d4-42dc-8de5-7637698c2ad8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-405565393253879426881794", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4079114c-10d4-42dc-8de5-7637698c2ad8", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-405565393253879426881794", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4079114c-10d4-42dc-8de5-7637698c2ad8" ] + }, + "id" : "urn:uuid:7dc744b6-9aa9-47df-a9af-19fd3bdfbe71" + } ] + }, { + "catenaXId" : "urn:uuid:28aeca09-a251-4629-820d-eb047addc9c7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:28aeca09-a251-4629-820d-eb047addc9c7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-419180701716972141062130", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:28aeca09-a251-4629-820d-eb047addc9c7", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-419180701716972141062130", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:28aeca09-a251-4629-820d-eb047addc9c7" ] + }, + "id" : "urn:uuid:eaed7281-e414-45a6-bec3-eae98ee287fd" + } ] + }, { + "catenaXId" : "urn:uuid:a112ccd8-1476-455d-936b-783b951667ec", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a112ccd8-1476-455d-936b-783b951667ec" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-833404406137215232024139", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a112ccd8-1476-455d-936b-783b951667ec", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-833404406137215232024139", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a112ccd8-1476-455d-936b-783b951667ec" ] + }, + "id" : "urn:uuid:b6761551-c9d6-4e38-a5e3-6f7a78d9e722" + } ] + }, { + "catenaXId" : "urn:uuid:540c139b-826e-458e-a536-d6a6d3d01d5e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:540c139b-826e-458e-a536-d6a6d3d01d5e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-919148611477937186335329", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:540c139b-826e-458e-a536-d6a6d3d01d5e", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-919148611477937186335329", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:540c139b-826e-458e-a536-d6a6d3d01d5e" ] + }, + "id" : "urn:uuid:906752bb-209f-4855-b0ff-ee8dd0201207" + } ] + }, { + "catenaXId" : "urn:uuid:03958eb2-501d-4356-a03e-e85da90c1f92", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:03958eb2-501d-4356-a03e-e85da90c1f92" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-062609815376278337569759", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:03958eb2-501d-4356-a03e-e85da90c1f92", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-062609815376278337569759", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:03958eb2-501d-4356-a03e-e85da90c1f92" ] + }, + "id" : "urn:uuid:2f7b7f73-b28c-48b2-88b3-31767d8aaee9" + } ] + }, { + "catenaXId" : "urn:uuid:bfa5bc25-e7d3-41b3-9af7-9ba085fed120", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bfa5bc25-e7d3-41b3-9af7-9ba085fed120" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-278099507813331392551641", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bfa5bc25-e7d3-41b3-9af7-9ba085fed120", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-278099507813331392551641", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bfa5bc25-e7d3-41b3-9af7-9ba085fed120" ] + }, + "id" : "urn:uuid:d10f51a8-72b9-413e-9dfe-e73030841901" + } ] + }, { + "catenaXId" : "urn:uuid:18fc5f13-ae4c-4dcf-9a0d-ca8897ead240", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18fc5f13-ae4c-4dcf-9a0d-ca8897ead240" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-999955570620259362471907", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18fc5f13-ae4c-4dcf-9a0d-ca8897ead240", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-999955570620259362471907", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:18fc5f13-ae4c-4dcf-9a0d-ca8897ead240" ] + }, + "id" : "urn:uuid:c4b3f44f-6e0d-4b3f-aded-77a74e51860b" + } ] + }, { + "catenaXId" : "urn:uuid:979818ab-6f5d-42d9-84aa-5fcbf69a06aa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:979818ab-6f5d-42d9-84aa-5fcbf69a06aa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-586083554439929128625348", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:979818ab-6f5d-42d9-84aa-5fcbf69a06aa", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-586083554439929128625348", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:979818ab-6f5d-42d9-84aa-5fcbf69a06aa" ] + }, + "id" : "urn:uuid:65e654e3-6628-42ed-a2d9-edb9ac2dcf41" + } ] + }, { + "catenaXId" : "urn:uuid:bdb24ca0-906c-42f8-8be1-82f4411cc501", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bdb24ca0-906c-42f8-8be1-82f4411cc501" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-922973621187023386977013", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bdb24ca0-906c-42f8-8be1-82f4411cc501", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-922973621187023386977013", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bdb24ca0-906c-42f8-8be1-82f4411cc501" ] + }, + "id" : "urn:uuid:752cec2c-1f00-43b8-bcf5-c4c12fcf1d18" + } ] + }, { + "catenaXId" : "urn:uuid:c5f253e2-f813-43c9-b889-00f78922d315", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c5f253e2-f813-43c9-b889-00f78922d315" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-644970208760768315556784", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c5f253e2-f813-43c9-b889-00f78922d315", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-644970208760768315556784", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c5f253e2-f813-43c9-b889-00f78922d315" ] + }, + "id" : "urn:uuid:ac5b1837-a996-4d61-a566-e805a9214300" + } ] + }, { + "catenaXId" : "urn:uuid:00c8de5a-b6bd-4061-88c1-2484ea3d3090", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00c8de5a-b6bd-4061-88c1-2484ea3d3090" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-605122614201177355135048", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00c8de5a-b6bd-4061-88c1-2484ea3d3090", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-605122614201177355135048", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:00c8de5a-b6bd-4061-88c1-2484ea3d3090" ] + }, + "id" : "urn:uuid:e93310b2-1dde-4fef-8b1e-6290ca526cfc" + } ] + }, { + "catenaXId" : "urn:uuid:3ad6542d-c83e-4250-b3e3-bcfd52c2a0ac", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3ad6542d-c83e-4250-b3e3-bcfd52c2a0ac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-936195705476340223321621", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3ad6542d-c83e-4250-b3e3-bcfd52c2a0ac", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-936195705476340223321621", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3ad6542d-c83e-4250-b3e3-bcfd52c2a0ac" ] + }, + "id" : "urn:uuid:aef4610e-7832-492f-bd14-4049484e4ac4" + } ] + }, { + "catenaXId" : "urn:uuid:702f242d-0697-4f83-bdfb-e598b36ac10e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:702f242d-0697-4f83-bdfb-e598b36ac10e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-827083274607284993215439", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:702f242d-0697-4f83-bdfb-e598b36ac10e", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-827083274607284993215439", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:702f242d-0697-4f83-bdfb-e598b36ac10e" ] + }, + "id" : "urn:uuid:a279da1f-4e7c-4284-9419-3e2ab275f141" + } ] + }, { + "catenaXId" : "urn:uuid:e7cb0fdc-2a5f-4d3d-9cf5-a963aad642a3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e7cb0fdc-2a5f-4d3d-9cf5-a963aad642a3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-480340645580297830148096", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e7cb0fdc-2a5f-4d3d-9cf5-a963aad642a3", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-480340645580297830148096", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e7cb0fdc-2a5f-4d3d-9cf5-a963aad642a3" ] + }, + "id" : "urn:uuid:df0decc4-cd98-4de4-86ae-f7f62ff43eca" + } ] + }, { + "catenaXId" : "urn:uuid:0789ef4c-dab5-4caf-a0a6-d49bede78019", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0789ef4c-dab5-4caf-a0a6-d49bede78019" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-292452212030235742646207", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0789ef4c-dab5-4caf-a0a6-d49bede78019", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-292452212030235742646207", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0789ef4c-dab5-4caf-a0a6-d49bede78019" ] + }, + "id" : "urn:uuid:cc76ae8e-b997-46e2-a05b-1e477d1b0730" + } ] + }, { + "catenaXId" : "urn:uuid:7a9adc73-f408-4800-820d-0c82a6bb6b53", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7a9adc73-f408-4800-820d-0c82a6bb6b53" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-471849492500080892913872", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7a9adc73-f408-4800-820d-0c82a6bb6b53", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-471849492500080892913872", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7a9adc73-f408-4800-820d-0c82a6bb6b53" ] + }, + "id" : "urn:uuid:a5cf7c1d-d04c-45f7-8a6e-fecac29239d5" + } ] + }, { + "catenaXId" : "urn:uuid:60bef7ae-f873-40e4-a824-1d0b66a1e19f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:60bef7ae-f873-40e4-a824-1d0b66a1e19f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-928051910186755296387331", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:60bef7ae-f873-40e4-a824-1d0b66a1e19f", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-928051910186755296387331", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:60bef7ae-f873-40e4-a824-1d0b66a1e19f" ] + }, + "id" : "urn:uuid:22995528-2dc4-4432-b126-3952c7b7fd51" + } ] + }, { + "catenaXId" : "urn:uuid:21429e22-60e8-4e2a-9f15-73e1aa0a5f1f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:21429e22-60e8-4e2a-9f15-73e1aa0a5f1f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-579467592911402589074868", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:21429e22-60e8-4e2a-9f15-73e1aa0a5f1f", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-579467592911402589074868", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:21429e22-60e8-4e2a-9f15-73e1aa0a5f1f" ] + }, + "id" : "urn:uuid:5f26ca99-515e-4d5e-b8e3-6ed6c929080f" + } ] + }, { + "catenaXId" : "urn:uuid:94165d74-1014-4a92-9798-2caa308e3eec", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:94165d74-1014-4a92-9798-2caa308e3eec" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-209803313033971598445398", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:94165d74-1014-4a92-9798-2caa308e3eec", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-209803313033971598445398", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:94165d74-1014-4a92-9798-2caa308e3eec" ] + }, + "id" : "urn:uuid:eeabb5d0-5fed-480f-8a92-37503ded62f2" + } ] + }, { + "catenaXId" : "urn:uuid:b31969df-5274-44fc-a2f3-46eab5162718", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b31969df-5274-44fc-a2f3-46eab5162718" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-227829392231501473242314", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b31969df-5274-44fc-a2f3-46eab5162718", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-227829392231501473242314", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b31969df-5274-44fc-a2f3-46eab5162718" ] + }, + "id" : "urn:uuid:fa082e50-dc98-446d-94a0-9a80f6d3b705" + } ] + }, { + "catenaXId" : "urn:uuid:18dee324-3016-4968-bdce-a1338fec49c1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18dee324-3016-4968-bdce-a1338fec49c1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-241364963045649353647630", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18dee324-3016-4968-bdce-a1338fec49c1", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-241364963045649353647630", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:18dee324-3016-4968-bdce-a1338fec49c1" ] + }, + "id" : "urn:uuid:1d6cd85d-0335-415d-a7fc-576b3b88667a" + } ] + }, { + "catenaXId" : "urn:uuid:de28a7b9-0e01-4d7d-8e10-b4eed42cf480", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:de28a7b9-0e01-4d7d-8e10-b4eed42cf480" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-814745729321651753374394", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:de28a7b9-0e01-4d7d-8e10-b4eed42cf480", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-814745729321651753374394", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:de28a7b9-0e01-4d7d-8e10-b4eed42cf480" ] + }, + "id" : "urn:uuid:dc2a29fe-658f-48c1-a50e-0b3fbd1fafda" + } ] + }, { + "catenaXId" : "urn:uuid:9f8be7fc-b402-41c7-8d8d-7a527c217a4f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9f8be7fc-b402-41c7-8d8d-7a527c217a4f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-248945616385831080938693", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9f8be7fc-b402-41c7-8d8d-7a527c217a4f", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-248945616385831080938693", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9f8be7fc-b402-41c7-8d8d-7a527c217a4f" ] + }, + "id" : "urn:uuid:8274ee00-541f-495c-bac8-88c426323193" + } ] + }, { + "catenaXId" : "urn:uuid:1a067f63-ebbe-4be9-95df-239068ba98d1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1a067f63-ebbe-4be9-95df-239068ba98d1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-243353896633789933117496", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1a067f63-ebbe-4be9-95df-239068ba98d1", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-243353896633789933117496", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1a067f63-ebbe-4be9-95df-239068ba98d1" ] + }, + "id" : "urn:uuid:3cdd57e0-c734-4794-94d7-f117246c25a7" + } ] + }, { + "catenaXId" : "urn:uuid:dbe29e2e-2b18-4a0d-892b-9232ad4efea4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dbe29e2e-2b18-4a0d-892b-9232ad4efea4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-408632971973735676470523", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dbe29e2e-2b18-4a0d-892b-9232ad4efea4", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-408632971973735676470523", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:dbe29e2e-2b18-4a0d-892b-9232ad4efea4" ] + }, + "id" : "urn:uuid:f36d6e8b-294f-4c12-bf5b-5b80c405db13" + } ] + }, { + "catenaXId" : "urn:uuid:24e65ea5-e0fd-4f55-b884-8526887a8dd1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:24e65ea5-e0fd-4f55-b884-8526887a8dd1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-066483165216636407522795", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24e65ea5-e0fd-4f55-b884-8526887a8dd1", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-066483165216636407522795", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:24e65ea5-e0fd-4f55-b884-8526887a8dd1" ] + }, + "id" : "urn:uuid:ed3b10d5-6bc3-40c8-8fba-fcaa450ae782" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", + "childItems" : [ { + "catenaXId" : "urn:uuid:09eb595f-5e15-497a-ab9a-4b1ccef5bbcc", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eb1de933-0041-4a9b-943f-8d9383c913dc", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-498194819574934690486419", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-498194819574934690486419", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-498194819574934690486419", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d" ] + }, + "id" : "urn:uuid:852340e8-2478-4e5d-87f5-a5512872d14b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 89, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 84, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 77, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:09eb595f-5e15-497a-ab9a-4b1ccef5bbcc", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:09eb595f-5e15-497a-ab9a-4b1ccef5bbcc" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "26216I9-63", + "key" : "manufacturerPartId" + }, { + "value" : "NO-753625884614624023167529", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:09eb595f-5e15-497a-ab9a-4b1ccef5bbcc", + "partTypeInformation" : { + "manufacturerPartId" : "26216I9-63", + "customerPartId" : "26216I9-63", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 57, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 29, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9", + "childItems" : [ { + "catenaXId" : "urn:uuid:a2f52182-a9eb-414d-a3ab-35e9724fc75b", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "49582R5-78", + "key" : "manufacturerPartId" + }, { + "value" : "NO-085164107964776204903879", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9", + "partTypeInformation" : { + "manufacturerPartId" : "49582R5-78", + "customerPartId" : "49582R5-78", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-085164107964776204903879", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "49582R5-78", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9" ] + }, + "id" : "urn:uuid:49c92259-35f7-4520-9243-1c48358c4b15" + } ] + }, { + "catenaXId" : "urn:uuid:a2f52182-a9eb-414d-a3ab-35e9724fc75b", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a2f52182-a9eb-414d-a3ab-35e9724fc75b" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "31406R6-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-898763006415875125720260", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a2f52182-a9eb-414d-a3ab-35e9724fc75b", + "partTypeInformation" : { + "manufacturerPartId" : "31406R6-35", + "customerPartId" : "31406R6-35", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 78, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 22, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eb1de933-0041-4a9b-943f-8d9383c913dc", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:eb1de933-0041-4a9b-943f-8d9383c913dc", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eb1de933-0041-4a9b-943f-8d9383c913dc" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "97693D1-94", + "key" : "manufacturerPartId" + }, { + "value" : "NO-371404927205832719665612", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eb1de933-0041-4a9b-943f-8d9383c913dc", + "partTypeInformation" : { + "manufacturerPartId" : "97693D1-94", + "customerPartId" : "97693D1-94", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d", + "childItems" : [ { + "catenaXId" : "urn:uuid:7f6360cf-26bc-4b52-a6ac-24ca1f4b1633", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:669ac9ac-af10-494e-8512-a43230da6f7a", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "78550L3-80", + "key" : "manufacturerPartId" + }, { + "value" : "NO-324912726283969195017097", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d", + "partTypeInformation" : { + "manufacturerPartId" : "78550L3-80", + "customerPartId" : "78550L3-80", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-324912726283969195017097", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78550L3-80", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d" ] + }, + "id" : "urn:uuid:323ba6fa-d645-4d74-9b65-604713f59ea9" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 86, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:7f6360cf-26bc-4b52-a6ac-24ca1f4b1633", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7f6360cf-26bc-4b52-a6ac-24ca1f4b1633" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "81784C6-15", + "key" : "manufacturerPartId" + }, { + "value" : "NO-596074067737114365409594", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7f6360cf-26bc-4b52-a6ac-24ca1f4b1633", + "partTypeInformation" : { + "manufacturerPartId" : "81784C6-15", + "customerPartId" : "81784C6-15", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 32, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 89, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5", + "childItems" : [ { + "catenaXId" : "urn:uuid:8b808b9d-6e56-4a16-b523-95ee1596d97d", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "09753G7-00", + "key" : "manufacturerPartId" + }, { + "value" : "NO-194130929678803630186272", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5", + "partTypeInformation" : { + "manufacturerPartId" : "09753G7-00", + "customerPartId" : "09753G7-00", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-194130929678803630186272", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09753G7-00", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5" ] + }, + "id" : "urn:uuid:990b8a9f-121f-4339-8b5c-e606e16cf959" + } ] + }, { + "catenaXId" : "urn:uuid:8b808b9d-6e56-4a16-b523-95ee1596d97d", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8b808b9d-6e56-4a16-b523-95ee1596d97d" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "31265Z7-32", + "key" : "manufacturerPartId" + }, { + "value" : "NO-909895104540401782916139", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8b808b9d-6e56-4a16-b523-95ee1596d97d", + "partTypeInformation" : { + "manufacturerPartId" : "31265Z7-32", + "customerPartId" : "31265Z7-32", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 70, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 15, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:669ac9ac-af10-494e-8512-a43230da6f7a", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:669ac9ac-af10-494e-8512-a43230da6f7a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "60567B5-52", + "key" : "manufacturerPartId" + }, { + "value" : "NO-908050628702433386764235", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:669ac9ac-af10-494e-8512-a43230da6f7a", + "partTypeInformation" : { + "manufacturerPartId" : "60567B5-52", + "customerPartId" : "60567B5-52", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-908050628702433386764235", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "60567B5-52", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:669ac9ac-af10-494e-8512-a43230da6f7a" ] + }, + "id" : "urn:uuid:d6abb1d7-af43-4ab9-b125-00eb9e248a62" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 68, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 52, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "engine" : { + "size" : 2998, + "power" : 154 + }, + "emptyWeight" : 1.79, + "fuel" : "petrol", + "vehicleModel" : "Vehicle Combustion", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "childItems" : [ { + "catenaXId" : "urn:uuid:91c5e0b2-28cb-40e3-9e02-2f7c0e3d63b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a83d7928-5d6f-421c-919b-7c65c9343c0b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e6a9c810-734e-4c73-90dd-66c195b79309", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2fffea0f-9628-4e2e-a96f-47af3985e5b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7da22501-971b-4580-afc5-5f602a84bcf2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7541250d-208f-42c0-b286-e2c8a862e20b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fc6ee0d5-5466-49da-ba5c-6018779a852f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d8625fe5-1d40-4750-8676-9b30be158db8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:75b8cf5b-f76a-4c67-90c0-90f913f4751d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d14df189-ce23-4327-b11a-155ccc5ed632", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e11df9f1-bfb4-4006-920d-1b4e95cd6d66", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:168707cf-75b8-496d-b0e0-df2131887d40", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0cf528d2-b99f-435f-89fb-aff628cfa14f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e09c3065-c382-4bec-998d-8f79a730ad83", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6a6eacd7-8c0c-4f9a-864e-0c79087e44fb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57cdf60c-7dc8-4cba-a941-1ddaff271a69", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ca77dc4e-e02f-4999-b059-101d6ba18058", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:38d34b5e-832d-4c02-97b1-233a0ab7ef31", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5395a124-fdbe-4abe-86f0-20d1b9d782d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6dfba136-c5ae-4e94-965f-1c32c25895f5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dac6611b-6e7a-4b9a-a06f-c8173acadac0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:835ca83e-defd-45a0-92ba-4b3bea906b26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:033f55de-e138-4378-9a01-53bad39c8b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:860ae542-3ba4-47cb-ba87-a3a7477fd3da", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f37cd36e-757f-4815-9346-4ebb37334429", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4fc991c9-af03-4914-9286-420aad5ac291", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8975db16-e9e6-4147-a8cc-b2c733d2211b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7340a8ec-71b5-4eed-a0aa-2caac341bfe1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0275bc4a-a8ec-4be6-b50b-4b5f6d6e3c5a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:63e7a6fd-182e-4627-999f-693b0af57706", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "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" + } ], + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "BQ-69", + "key" : "manufacturerPartId" + }, { + "value" : "OMBIBCLBMGCJNUKUW", + "key" : "partInstanceId" + }, { + "value" : "OMBIBCLBMGCJNUKUW", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2016-10-25T16:16:27.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "partTypeInformation" : { + "manufacturerPartId" : "BQ-69", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMBIBCLBMGCJNUKUW", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "BQ-69", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_combustion.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Combustion" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, + "id" : "urn:uuid:4381d7af-8a68-4cf4-ab90-216e30e5299b" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 68, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 84, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 20, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 79, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 16, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 89, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 74, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 6, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 27, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 46, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:91c5e0b2-28cb-40e3-9e02-2f7c0e3d63b2", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:91c5e0b2-28cb-40e3-9e02-2f7c0e3d63b2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-751817202927842496337413", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:91c5e0b2-28cb-40e3-9e02-2f7c0e3d63b2", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-751817202927842496337413", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:91c5e0b2-28cb-40e3-9e02-2f7c0e3d63b2" ] + }, + "id" : "urn:uuid:3577376a-6c8f-495e-822e-a4498d6a337d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:a83d7928-5d6f-421c-919b-7c65c9343c0b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a83d7928-5d6f-421c-919b-7c65c9343c0b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-310549296237774212346498", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a83d7928-5d6f-421c-919b-7c65c9343c0b", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-310549296237774212346498", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a83d7928-5d6f-421c-919b-7c65c9343c0b" ] + }, + "id" : "urn:uuid:60b2b161-c4c9-49b8-97d5-a8f73410fe05" + } ] + }, { + "catenaXId" : "urn:uuid:e6a9c810-734e-4c73-90dd-66c195b79309", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e6a9c810-734e-4c73-90dd-66c195b79309" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-441591882085613444857413", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e6a9c810-734e-4c73-90dd-66c195b79309", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-441591882085613444857413", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e6a9c810-734e-4c73-90dd-66c195b79309" ] + }, + "id" : "urn:uuid:63a7f9a6-5718-4a6f-a052-cc17c74b54c6" + } ] + }, { + "catenaXId" : "urn:uuid:2fffea0f-9628-4e2e-a96f-47af3985e5b2", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2fffea0f-9628-4e2e-a96f-47af3985e5b2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-582675928944843517651520", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2fffea0f-9628-4e2e-a96f-47af3985e5b2", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-582675928944843517651520", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2fffea0f-9628-4e2e-a96f-47af3985e5b2" ] + }, + "id" : "urn:uuid:c42f679e-5a15-4a35-a23e-2040b24fd399" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce", + "childItems" : [ { + "catenaXId" : "urn:uuid:6f337645-69ce-460b-9234-133d875f50d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-348682257099480333682675", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-348682257099480333682675", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce" ] + }, + "id" : "urn:uuid:5e3f3ee5-d75c-43cf-9406-d6eff7df5a5e" + } ] + }, { + "catenaXId" : "urn:uuid:6f337645-69ce-460b-9234-133d875f50d8", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f337645-69ce-460b-9234-133d875f50d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-512697909176186857981971", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f337645-69ce-460b-9234-133d875f50d8", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-512697909176186857981971", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6f337645-69ce-460b-9234-133d875f50d8" ] + }, + "id" : "urn:uuid:d677a59f-22d5-465c-8614-1241266c8314" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85", + "childItems" : [ { + "catenaXId" : "urn:uuid:b0ba45b4-7511-4619-b58a-dca85cb37db4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-632251251858239936060802", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-632251251858239936060802", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85" ] + }, + "id" : "urn:uuid:133b7da0-6168-4b13-bd7c-d40685c65417" + } ] + }, { + "catenaXId" : "urn:uuid:b0ba45b4-7511-4619-b58a-dca85cb37db4", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b0ba45b4-7511-4619-b58a-dca85cb37db4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-989000344360443777875935", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b0ba45b4-7511-4619-b58a-dca85cb37db4", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-989000344360443777875935", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b0ba45b4-7511-4619-b58a-dca85cb37db4" ] + }, + "id" : "urn:uuid:39bc200e-7348-434e-8fb0-67fe3b223bc0" + } ] + }, { + "catenaXId" : "urn:uuid:7da22501-971b-4580-afc5-5f602a84bcf2", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7da22501-971b-4580-afc5-5f602a84bcf2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-039984102804470869407476", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7da22501-971b-4580-afc5-5f602a84bcf2", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-039984102804470869407476", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7da22501-971b-4580-afc5-5f602a84bcf2" ] + }, + "id" : "urn:uuid:6f177420-b607-463e-8536-cfe85eed11bc" + } ] + }, { + "catenaXId" : "urn:uuid:7541250d-208f-42c0-b286-e2c8a862e20b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7541250d-208f-42c0-b286-e2c8a862e20b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-392287485223277183133825", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7541250d-208f-42c0-b286-e2c8a862e20b", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-392287485223277183133825", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7541250d-208f-42c0-b286-e2c8a862e20b" ] + }, + "id" : "urn:uuid:1ecf3e1d-1c48-480c-b080-714066680b4e" + } ] + }, { + "catenaXId" : "urn:uuid:fc6ee0d5-5466-49da-ba5c-6018779a852f", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fc6ee0d5-5466-49da-ba5c-6018779a852f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-667145908558135490821732", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fc6ee0d5-5466-49da-ba5c-6018779a852f", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-667145908558135490821732", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fc6ee0d5-5466-49da-ba5c-6018779a852f" ] + }, + "id" : "urn:uuid:fc1b830b-eb8a-429d-9d73-d3c16e47d6aa" + } ] + }, { + "catenaXId" : "urn:uuid:d8625fe5-1d40-4750-8676-9b30be158db8", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d8625fe5-1d40-4750-8676-9b30be158db8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-500659192920232468856997", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d8625fe5-1d40-4750-8676-9b30be158db8", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-500659192920232468856997", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d8625fe5-1d40-4750-8676-9b30be158db8" ] + }, + "id" : "urn:uuid:2e9f3186-aaaf-49b3-a216-6f7b3edf196c" + } ] + }, { + "catenaXId" : "urn:uuid:75b8cf5b-f76a-4c67-90c0-90f913f4751d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:75b8cf5b-f76a-4c67-90c0-90f913f4751d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-292055565509762165911084", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:75b8cf5b-f76a-4c67-90c0-90f913f4751d", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-292055565509762165911084", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:75b8cf5b-f76a-4c67-90c0-90f913f4751d" ] + }, + "id" : "urn:uuid:57557e6a-a58a-4b61-b948-31c15c9599ef" + } ] + }, { + "catenaXId" : "urn:uuid:d14df189-ce23-4327-b11a-155ccc5ed632", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d14df189-ce23-4327-b11a-155ccc5ed632" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-399305197308877979149940", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d14df189-ce23-4327-b11a-155ccc5ed632", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-399305197308877979149940", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d14df189-ce23-4327-b11a-155ccc5ed632" ] + }, + "id" : "urn:uuid:e3e74cab-fd81-446e-a8e5-dbaa912e2f06" + } ] + }, { + "catenaXId" : "urn:uuid:e11df9f1-bfb4-4006-920d-1b4e95cd6d66", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e11df9f1-bfb4-4006-920d-1b4e95cd6d66" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-955418231529057193798573", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e11df9f1-bfb4-4006-920d-1b4e95cd6d66", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-955418231529057193798573", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e11df9f1-bfb4-4006-920d-1b4e95cd6d66" ] + }, + "id" : "urn:uuid:63dd529d-2d2a-4e77-8e4c-7b5536196e51" + } ] + }, { + "catenaXId" : "urn:uuid:168707cf-75b8-496d-b0e0-df2131887d40", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:168707cf-75b8-496d-b0e0-df2131887d40" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-845874315660019669917809", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:168707cf-75b8-496d-b0e0-df2131887d40", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-845874315660019669917809", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:168707cf-75b8-496d-b0e0-df2131887d40" ] + }, + "id" : "urn:uuid:74bcf436-2e6d-4e66-919f-2c4ff96c6b4a" + } ] + }, { + "catenaXId" : "urn:uuid:0cf528d2-b99f-435f-89fb-aff628cfa14f", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0cf528d2-b99f-435f-89fb-aff628cfa14f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-853947501173669423279745", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0cf528d2-b99f-435f-89fb-aff628cfa14f", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-853947501173669423279745", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0cf528d2-b99f-435f-89fb-aff628cfa14f" ] + }, + "id" : "urn:uuid:c8cbf3d5-1100-4607-ba64-10796b190636" + } ] + }, { + "catenaXId" : "urn:uuid:e09c3065-c382-4bec-998d-8f79a730ad83", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e09c3065-c382-4bec-998d-8f79a730ad83" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-647199743444875368674665", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e09c3065-c382-4bec-998d-8f79a730ad83", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-647199743444875368674665", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e09c3065-c382-4bec-998d-8f79a730ad83" ] + }, + "id" : "urn:uuid:f5615578-1280-473f-949a-452a7c525f40" + } ] + }, { + "catenaXId" : "urn:uuid:6a6eacd7-8c0c-4f9a-864e-0c79087e44fb", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6a6eacd7-8c0c-4f9a-864e-0c79087e44fb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-371496691904182359134187", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6a6eacd7-8c0c-4f9a-864e-0c79087e44fb", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-371496691904182359134187", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6a6eacd7-8c0c-4f9a-864e-0c79087e44fb" ] + }, + "id" : "urn:uuid:3d9f20cc-3a3b-4a5c-828a-77fbe1eda496" + } ] + }, { + "catenaXId" : "urn:uuid:57cdf60c-7dc8-4cba-a941-1ddaff271a69", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57cdf60c-7dc8-4cba-a941-1ddaff271a69" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-812818385541289857398402", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57cdf60c-7dc8-4cba-a941-1ddaff271a69", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-812818385541289857398402", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:57cdf60c-7dc8-4cba-a941-1ddaff271a69" ] + }, + "id" : "urn:uuid:e0fbab03-00d1-4f18-b821-332f031a7dd5" + } ] + }, { + "catenaXId" : "urn:uuid:ca77dc4e-e02f-4999-b059-101d6ba18058", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ca77dc4e-e02f-4999-b059-101d6ba18058" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-638996990326473673944702", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca77dc4e-e02f-4999-b059-101d6ba18058", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-638996990326473673944702", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ca77dc4e-e02f-4999-b059-101d6ba18058" ] + }, + "id" : "urn:uuid:673276c1-42ec-4441-8c3e-bebf3d74caf1" + } ] + }, { + "catenaXId" : "urn:uuid:38d34b5e-832d-4c02-97b1-233a0ab7ef31", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:38d34b5e-832d-4c02-97b1-233a0ab7ef31" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-853647397969526732653328", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:38d34b5e-832d-4c02-97b1-233a0ab7ef31", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-853647397969526732653328", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:38d34b5e-832d-4c02-97b1-233a0ab7ef31" ] + }, + "id" : "urn:uuid:dae0f21a-dd10-4ee5-990a-7f737e08132e" + } ] + }, { + "catenaXId" : "urn:uuid:5395a124-fdbe-4abe-86f0-20d1b9d782d9", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5395a124-fdbe-4abe-86f0-20d1b9d782d9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-110013520411567318684811", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5395a124-fdbe-4abe-86f0-20d1b9d782d9", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-110013520411567318684811", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5395a124-fdbe-4abe-86f0-20d1b9d782d9" ] + }, + "id" : "urn:uuid:b09bd370-878f-487e-8090-706f62f8a9bb" + } ] + }, { + "catenaXId" : "urn:uuid:6dfba136-c5ae-4e94-965f-1c32c25895f5", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6dfba136-c5ae-4e94-965f-1c32c25895f5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-783824456437114596043105", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6dfba136-c5ae-4e94-965f-1c32c25895f5", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-783824456437114596043105", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6dfba136-c5ae-4e94-965f-1c32c25895f5" ] + }, + "id" : "urn:uuid:5b8e335b-010b-4b39-98e9-b29b95bde8ba" + } ] + }, { + "catenaXId" : "urn:uuid:dac6611b-6e7a-4b9a-a06f-c8173acadac0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dac6611b-6e7a-4b9a-a06f-c8173acadac0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-273996112051558992667558", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dac6611b-6e7a-4b9a-a06f-c8173acadac0", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-273996112051558992667558", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:dac6611b-6e7a-4b9a-a06f-c8173acadac0" ] + }, + "id" : "urn:uuid:9459bb31-a2a4-4cbe-a6d7-11fd19decff7" + } ] + }, { + "catenaXId" : "urn:uuid:835ca83e-defd-45a0-92ba-4b3bea906b26", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:835ca83e-defd-45a0-92ba-4b3bea906b26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-586047805384000787703464", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:835ca83e-defd-45a0-92ba-4b3bea906b26", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-586047805384000787703464", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:835ca83e-defd-45a0-92ba-4b3bea906b26" ] + }, + "id" : "urn:uuid:0dc809ce-27d2-4ccd-8b31-edef8fc7d2fb" + } ] + }, { + "catenaXId" : "urn:uuid:033f55de-e138-4378-9a01-53bad39c8b2f", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:033f55de-e138-4378-9a01-53bad39c8b2f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-006254495968502271345573", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:033f55de-e138-4378-9a01-53bad39c8b2f", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-006254495968502271345573", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:033f55de-e138-4378-9a01-53bad39c8b2f" ] + }, + "id" : "urn:uuid:26cb99b8-1423-4d8f-a77b-135fd4e40ac2" + } ] + }, { + "catenaXId" : "urn:uuid:860ae542-3ba4-47cb-ba87-a3a7477fd3da", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:860ae542-3ba4-47cb-ba87-a3a7477fd3da" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-766344142737542662449881", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:860ae542-3ba4-47cb-ba87-a3a7477fd3da", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-766344142737542662449881", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:860ae542-3ba4-47cb-ba87-a3a7477fd3da" ] + }, + "id" : "urn:uuid:afc719cb-8332-4b48-9b20-d59fb1953861" + } ] + }, { + "catenaXId" : "urn:uuid:f37cd36e-757f-4815-9346-4ebb37334429", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f37cd36e-757f-4815-9346-4ebb37334429" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-043131142845616189694679", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f37cd36e-757f-4815-9346-4ebb37334429", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-043131142845616189694679", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f37cd36e-757f-4815-9346-4ebb37334429" ] + }, + "id" : "urn:uuid:659c4a84-4213-4d90-8aea-951a2903dbfc" + } ] + }, { + "catenaXId" : "urn:uuid:4fc991c9-af03-4914-9286-420aad5ac291", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4fc991c9-af03-4914-9286-420aad5ac291" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-252421989161870869356117", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4fc991c9-af03-4914-9286-420aad5ac291", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-252421989161870869356117", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4fc991c9-af03-4914-9286-420aad5ac291" ] + }, + "id" : "urn:uuid:2e150293-ebef-40e7-ace8-6fed56069145" + } ] + }, { + "catenaXId" : "urn:uuid:8975db16-e9e6-4147-a8cc-b2c733d2211b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8975db16-e9e6-4147-a8cc-b2c733d2211b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-532484206781554419246030", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8975db16-e9e6-4147-a8cc-b2c733d2211b", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-532484206781554419246030", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8975db16-e9e6-4147-a8cc-b2c733d2211b" ] + }, + "id" : "urn:uuid:b326edea-6870-43ed-b0d7-05beb574c208" + } ] + }, { + "catenaXId" : "urn:uuid:7340a8ec-71b5-4eed-a0aa-2caac341bfe1", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7340a8ec-71b5-4eed-a0aa-2caac341bfe1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-308982133365586744947049", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7340a8ec-71b5-4eed-a0aa-2caac341bfe1", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-308982133365586744947049", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7340a8ec-71b5-4eed-a0aa-2caac341bfe1" ] + }, + "id" : "urn:uuid:747e6e5d-bf97-466d-b639-edf3ecd96e49" + } ] + }, { + "catenaXId" : "urn:uuid:0275bc4a-a8ec-4be6-b50b-4b5f6d6e3c5a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0275bc4a-a8ec-4be6-b50b-4b5f6d6e3c5a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-657548050336401702770431", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0275bc4a-a8ec-4be6-b50b-4b5f6d6e3c5a", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-657548050336401702770431", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0275bc4a-a8ec-4be6-b50b-4b5f6d6e3c5a" ] + }, + "id" : "urn:uuid:3a48977b-0341-49a4-9139-1b89492b4208" + } ] + }, { + "catenaXId" : "urn:uuid:63e7a6fd-182e-4627-999f-693b0af57706", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:63e7a6fd-182e-4627-999f-693b0af57706" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-153758057561213311441960", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:63e7a6fd-182e-4627-999f-693b0af57706", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-153758057561213311441960", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:63e7a6fd-182e-4627-999f-693b0af57706" ] + }, + "id" : "urn:uuid:0c1cd9e5-726b-456c-8f94-da54cc3e8d5a" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", + "childItems" : [ { + "catenaXId" : "urn:uuid:2ac66c67-a343-4b59-baef-fd8f3b0ee2d3", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ae361cb1-782b-42c2-aa4c-c7bc76511fcf", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-503395398518429967899138", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-503395398518429967899138", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-503395398518429967899138", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07" ] + }, + "id" : "urn:uuid:26a20932-af4d-47d0-80af-a100aaba7e7e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 64, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 11, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 84, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:2ac66c67-a343-4b59-baef-fd8f3b0ee2d3", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2ac66c67-a343-4b59-baef-fd8f3b0ee2d3" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "24246I9-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-564833073570647705978891", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2ac66c67-a343-4b59-baef-fd8f3b0ee2d3", + "partTypeInformation" : { + "manufacturerPartId" : "24246I9-59", + "customerPartId" : "24246I9-59", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 84, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 89, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946", + "childItems" : [ { + "catenaXId" : "urn:uuid:2ce74a26-6c89-4f36-9733-6d43e3c90b26", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "09066J9-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-999718683890042989028690", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946", + "partTypeInformation" : { + "manufacturerPartId" : "09066J9-08", + "customerPartId" : "09066J9-08", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-999718683890042989028690", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09066J9-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946" ] + }, + "id" : "urn:uuid:4ae88e1a-102f-483f-b43f-ee1f5a20d7f4" + } ] + }, { + "catenaXId" : "urn:uuid:2ce74a26-6c89-4f36-9733-6d43e3c90b26", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2ce74a26-6c89-4f36-9733-6d43e3c90b26" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "81452S3-22", + "key" : "manufacturerPartId" + }, { + "value" : "NO-904312764188087230684378", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2ce74a26-6c89-4f36-9733-6d43e3c90b26", + "partTypeInformation" : { + "manufacturerPartId" : "81452S3-22", + "customerPartId" : "81452S3-22", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 16, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 20, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ae361cb1-782b-42c2-aa4c-c7bc76511fcf", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:ae361cb1-782b-42c2-aa4c-c7bc76511fcf", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ae361cb1-782b-42c2-aa4c-c7bc76511fcf" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "10757G9-67", + "key" : "manufacturerPartId" + }, { + "value" : "NO-166140118044327932496822", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ae361cb1-782b-42c2-aa4c-c7bc76511fcf", + "partTypeInformation" : { + "manufacturerPartId" : "10757G9-67", + "customerPartId" : "10757G9-67", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69", + "childItems" : [ { + "catenaXId" : "urn:uuid:bc2a5af6-1b71-43e7-ac55-6b9874495261", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8229ad3b-ef8a-4d0d-96de-55e2f10c6df3", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "94379D1-77", + "key" : "manufacturerPartId" + }, { + "value" : "NO-970320992992164011168030", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69", + "partTypeInformation" : { + "manufacturerPartId" : "94379D1-77", + "customerPartId" : "94379D1-77", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-970320992992164011168030", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94379D1-77", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69" ] + }, + "id" : "urn:uuid:59b7edd0-ce8e-4920-a6a6-d7341d1b644f" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 87, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:bc2a5af6-1b71-43e7-ac55-6b9874495261", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bc2a5af6-1b71-43e7-ac55-6b9874495261" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "75072C7-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-601149566944415294163643", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bc2a5af6-1b71-43e7-ac55-6b9874495261", + "partTypeInformation" : { + "manufacturerPartId" : "75072C7-04", + "customerPartId" : "75072C7-04", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 52, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 65, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a", + "childItems" : [ { + "catenaXId" : "urn:uuid:47f20f1b-689f-4bd7-bfbb-818d6c98bdf8", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "41948V4-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-134183221685241428507608", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a", + "partTypeInformation" : { + "manufacturerPartId" : "41948V4-74", + "customerPartId" : "41948V4-74", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-134183221685241428507608", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "41948V4-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a" ] + }, + "id" : "urn:uuid:f89da2b2-8186-4309-82d3-70134cbb6415" + } ] + }, { + "catenaXId" : "urn:uuid:47f20f1b-689f-4bd7-bfbb-818d6c98bdf8", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:47f20f1b-689f-4bd7-bfbb-818d6c98bdf8" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "18144Y9-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-034839644905074348915302", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:47f20f1b-689f-4bd7-bfbb-818d6c98bdf8", + "partTypeInformation" : { + "manufacturerPartId" : "18144Y9-59", + "customerPartId" : "18144Y9-59", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 19, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 2, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8229ad3b-ef8a-4d0d-96de-55e2f10c6df3", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8229ad3b-ef8a-4d0d-96de-55e2f10c6df3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "56208S9-66", + "key" : "manufacturerPartId" + }, { + "value" : "NO-113415800821332225528760", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8229ad3b-ef8a-4d0d-96de-55e2f10c6df3", + "partTypeInformation" : { + "manufacturerPartId" : "56208S9-66", + "customerPartId" : "56208S9-66", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-113415800821332225528760", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "56208S9-66", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8229ad3b-ef8a-4d0d-96de-55e2f10c6df3" ] + }, + "id" : "urn:uuid:b0cdef39-0c8a-4859-a552-cb17b082464a" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 84, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 43, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "engine" : { + "size" : 2998, + "power" : 154 + }, + "emptyWeight" : 1.79, + "fuel" : "petrol", + "vehicleModel" : "Vehicle Combustion", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "childItems" : [ { + "catenaXId" : "urn:uuid:49fad1d2-4056-481a-885f-f46f8f83215b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f674284b-6c1e-4c1f-acb8-494f2398a116", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:79de6b05-836e-4538-80c7-d3416e136525", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:556b807c-1c54-4cb5-8eda-033a2db1ed5b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6107dd30-028b-4369-b938-8d932e650440", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ca5c4757-312b-479f-ad25-a0553d3e14de", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1e291e40-be91-4ee0-b55b-99b0e2bc5e63", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:658d1e9b-3ba4-416b-8e9f-340c9c10d0f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0729a64-5425-4e55-86e7-0d070bbf1377", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:704f495b-15b3-451c-9f1e-245a3a3a347b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a7f6920e-324b-45c5-90a0-33545573318e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5c6e3541-b6c5-4c74-b22e-cadea466b292", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ba696742-552f-46bc-b2b9-84ad669bb273", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ba2eca7a-0c0e-4a24-831a-db69d715ae1c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bd46b5d5-5000-49eb-aee8-4a5f54d676ba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:197bc376-ac0c-405d-af90-9380f4af310e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57fa3cb7-e13c-4a77-ba89-264b7a0c59b6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:28312ba3-bad5-40aa-af75-c53318d1e446", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:25e10753-a6e7-491a-a607-b045674b000d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:31ac2152-d914-4966-925e-5ffacd9b56dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5fbe4950-60c0-4172-ac15-8c8d0f324de4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:220f7d14-c8b3-4b24-889f-e9639528aea7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a0c89b26-fcbf-4047-8715-6a909ccc44c2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4154e218-adf0-4a1a-954a-61607659ed91", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8184a9e1-a587-4319-9228-3729ed0cd019", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9dc6eee5-b4c9-4e12-8145-0cbdb4bc4520", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e1b86f45-cab7-4be5-9fd3-1bbb1ff8a989", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:44dce81c-618a-4068-aa2d-fdd0f7a7bdf5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9eedcb70-49b8-4a0a-bda2-ffdb4c73e538", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d16110b-6a80-4d28-8c58-c71dc9d1f6eb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c80cfdc9-2d97-4856-bcc8-cea1ce8f9e56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "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" + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "WY-58", + "key" : "manufacturerPartId" + }, { + "value" : "OMCRHSMILXFLDSPTT", + "key" : "partInstanceId" + }, { + "value" : "OMCRHSMILXFLDSPTT", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2020-08-12T09:16:05.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "partTypeInformation" : { + "manufacturerPartId" : "WY-58", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCRHSMILXFLDSPTT", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "WY-58", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_combustion.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Combustion" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, + "id" : "urn:uuid:883eaffc-eb47-4598-8a40-5828565e0f66" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 51, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 80, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 24, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 5, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 21, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 58, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 42, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 40, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 0, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 12, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:49fad1d2-4056-481a-885f-f46f8f83215b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:49fad1d2-4056-481a-885f-f46f8f83215b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-011237633826882038980571", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:49fad1d2-4056-481a-885f-f46f8f83215b", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-011237633826882038980571", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:49fad1d2-4056-481a-885f-f46f8f83215b" ] + }, + "id" : "urn:uuid:365f6e44-62cb-47db-932d-f8ceb18ebaaf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:f674284b-6c1e-4c1f-acb8-494f2398a116", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f674284b-6c1e-4c1f-acb8-494f2398a116" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-580522754779317756940252", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f674284b-6c1e-4c1f-acb8-494f2398a116", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-580522754779317756940252", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f674284b-6c1e-4c1f-acb8-494f2398a116" ] + }, + "id" : "urn:uuid:9084e834-2759-4873-a437-9e29251babc1" + } ] + }, { + "catenaXId" : "urn:uuid:79de6b05-836e-4538-80c7-d3416e136525", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:79de6b05-836e-4538-80c7-d3416e136525" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-243466494364842201335681", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:79de6b05-836e-4538-80c7-d3416e136525", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-243466494364842201335681", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:79de6b05-836e-4538-80c7-d3416e136525" ] + }, + "id" : "urn:uuid:0b68d924-e587-4a3b-b5b4-823b9978980c" + } ] + }, { + "catenaXId" : "urn:uuid:556b807c-1c54-4cb5-8eda-033a2db1ed5b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:556b807c-1c54-4cb5-8eda-033a2db1ed5b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-868798356191578505078814", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:556b807c-1c54-4cb5-8eda-033a2db1ed5b", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-868798356191578505078814", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:556b807c-1c54-4cb5-8eda-033a2db1ed5b" ] + }, + "id" : "urn:uuid:d67d5b78-e4b4-4eed-a055-2ca6c6a988b3" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6107dd30-028b-4369-b938-8d932e650440", + "childItems" : [ { + "catenaXId" : "urn:uuid:1284d656-53a0-4d89-98e3-fd45a29d260b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6107dd30-028b-4369-b938-8d932e650440", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6107dd30-028b-4369-b938-8d932e650440" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-855771432696622540590062", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6107dd30-028b-4369-b938-8d932e650440", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-855771432696622540590062", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6107dd30-028b-4369-b938-8d932e650440" ] + }, + "id" : "urn:uuid:bca976b2-99ec-47cc-ba77-b37cda9f1c9c" + } ] + }, { + "catenaXId" : "urn:uuid:1284d656-53a0-4d89-98e3-fd45a29d260b", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6107dd30-028b-4369-b938-8d932e650440", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1284d656-53a0-4d89-98e3-fd45a29d260b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-763340142933200381829557", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1284d656-53a0-4d89-98e3-fd45a29d260b", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-763340142933200381829557", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1284d656-53a0-4d89-98e3-fd45a29d260b" ] + }, + "id" : "urn:uuid:f4326148-9433-4cde-ab21-0b70d5c86437" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034", + "childItems" : [ { + "catenaXId" : "urn:uuid:c2b60249-ad37-4a8e-9787-6edbbc8f814c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-415995150614433878185140", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-415995150614433878185140", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034" ] + }, + "id" : "urn:uuid:785c3996-d22b-49d2-aaf0-dee39c98913d" + } ] + }, { + "catenaXId" : "urn:uuid:c2b60249-ad37-4a8e-9787-6edbbc8f814c", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c2b60249-ad37-4a8e-9787-6edbbc8f814c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-217491820696088285031862", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c2b60249-ad37-4a8e-9787-6edbbc8f814c", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-217491820696088285031862", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c2b60249-ad37-4a8e-9787-6edbbc8f814c" ] + }, + "id" : "urn:uuid:7fa81199-34f3-447f-a90a-1a1ef621df39" + } ] + }, { + "catenaXId" : "urn:uuid:ca5c4757-312b-479f-ad25-a0553d3e14de", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ca5c4757-312b-479f-ad25-a0553d3e14de" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-651302166543046355104044", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca5c4757-312b-479f-ad25-a0553d3e14de", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-651302166543046355104044", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ca5c4757-312b-479f-ad25-a0553d3e14de" ] + }, + "id" : "urn:uuid:62f51937-557d-4be2-8b42-f04b428d8c11" + } ] + }, { + "catenaXId" : "urn:uuid:1e291e40-be91-4ee0-b55b-99b0e2bc5e63", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1e291e40-be91-4ee0-b55b-99b0e2bc5e63" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-596675707955724135172625", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1e291e40-be91-4ee0-b55b-99b0e2bc5e63", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-596675707955724135172625", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1e291e40-be91-4ee0-b55b-99b0e2bc5e63" ] + }, + "id" : "urn:uuid:0ddb6eb8-2b88-4ca6-b94b-0502d60af5d5" + } ] + }, { + "catenaXId" : "urn:uuid:658d1e9b-3ba4-416b-8e9f-340c9c10d0f4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:658d1e9b-3ba4-416b-8e9f-340c9c10d0f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-502704825957195916893489", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:658d1e9b-3ba4-416b-8e9f-340c9c10d0f4", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-502704825957195916893489", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:658d1e9b-3ba4-416b-8e9f-340c9c10d0f4" ] + }, + "id" : "urn:uuid:be49612a-4996-4da7-8fd5-074083eebc6a" + } ] + }, { + "catenaXId" : "urn:uuid:f0729a64-5425-4e55-86e7-0d070bbf1377", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0729a64-5425-4e55-86e7-0d070bbf1377" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-996367848652089827382377", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0729a64-5425-4e55-86e7-0d070bbf1377", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-996367848652089827382377", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0729a64-5425-4e55-86e7-0d070bbf1377" ] + }, + "id" : "urn:uuid:d28ff9e9-7fe6-4d3a-a1a7-ca5976f70886" + } ] + }, { + "catenaXId" : "urn:uuid:704f495b-15b3-451c-9f1e-245a3a3a347b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:704f495b-15b3-451c-9f1e-245a3a3a347b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-271435707597553901071941", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:704f495b-15b3-451c-9f1e-245a3a3a347b", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-271435707597553901071941", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:704f495b-15b3-451c-9f1e-245a3a3a347b" ] + }, + "id" : "urn:uuid:b995665b-8781-4d73-9dcc-1a0205973bef" + } ] + }, { + "catenaXId" : "urn:uuid:a7f6920e-324b-45c5-90a0-33545573318e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a7f6920e-324b-45c5-90a0-33545573318e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-330529498763958907216234", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a7f6920e-324b-45c5-90a0-33545573318e", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-330529498763958907216234", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a7f6920e-324b-45c5-90a0-33545573318e" ] + }, + "id" : "urn:uuid:a3d972b1-80a3-4a1b-8586-7532cdf55708" + } ] + }, { + "catenaXId" : "urn:uuid:5c6e3541-b6c5-4c74-b22e-cadea466b292", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5c6e3541-b6c5-4c74-b22e-cadea466b292" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-714453193033848866609710", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5c6e3541-b6c5-4c74-b22e-cadea466b292", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-714453193033848866609710", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5c6e3541-b6c5-4c74-b22e-cadea466b292" ] + }, + "id" : "urn:uuid:23852308-4557-49d5-8f09-bace4d6ed130" + } ] + }, { + "catenaXId" : "urn:uuid:ba696742-552f-46bc-b2b9-84ad669bb273", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ba696742-552f-46bc-b2b9-84ad669bb273" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-645978793592755348107341", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ba696742-552f-46bc-b2b9-84ad669bb273", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-645978793592755348107341", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ba696742-552f-46bc-b2b9-84ad669bb273" ] + }, + "id" : "urn:uuid:6f389f4c-f63b-4f8f-9bb7-a230eab940d6" + } ] + }, { + "catenaXId" : "urn:uuid:ba2eca7a-0c0e-4a24-831a-db69d715ae1c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ba2eca7a-0c0e-4a24-831a-db69d715ae1c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-663648119957038609110248", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ba2eca7a-0c0e-4a24-831a-db69d715ae1c", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-663648119957038609110248", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ba2eca7a-0c0e-4a24-831a-db69d715ae1c" ] + }, + "id" : "urn:uuid:e261032c-5798-4504-8995-3306792171a8" + } ] + }, { + "catenaXId" : "urn:uuid:bd46b5d5-5000-49eb-aee8-4a5f54d676ba", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bd46b5d5-5000-49eb-aee8-4a5f54d676ba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-400136059130749658041732", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bd46b5d5-5000-49eb-aee8-4a5f54d676ba", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-400136059130749658041732", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bd46b5d5-5000-49eb-aee8-4a5f54d676ba" ] + }, + "id" : "urn:uuid:7a7e4963-134e-40fb-8738-3ac6604e698d" + } ] + }, { + "catenaXId" : "urn:uuid:197bc376-ac0c-405d-af90-9380f4af310e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:197bc376-ac0c-405d-af90-9380f4af310e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-545063514435865813792603", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:197bc376-ac0c-405d-af90-9380f4af310e", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-545063514435865813792603", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:197bc376-ac0c-405d-af90-9380f4af310e" ] + }, + "id" : "urn:uuid:6b82c3da-558e-4ae3-bb04-e83a37715b6b" + } ] + }, { + "catenaXId" : "urn:uuid:57fa3cb7-e13c-4a77-ba89-264b7a0c59b6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57fa3cb7-e13c-4a77-ba89-264b7a0c59b6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-397488193051298042061253", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57fa3cb7-e13c-4a77-ba89-264b7a0c59b6", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-397488193051298042061253", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:57fa3cb7-e13c-4a77-ba89-264b7a0c59b6" ] + }, + "id" : "urn:uuid:c38eb529-59b1-4b42-a4d4-8206101ae2b8" + } ] + }, { + "catenaXId" : "urn:uuid:28312ba3-bad5-40aa-af75-c53318d1e446", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:28312ba3-bad5-40aa-af75-c53318d1e446" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-493621190802717251672640", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:28312ba3-bad5-40aa-af75-c53318d1e446", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-493621190802717251672640", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:28312ba3-bad5-40aa-af75-c53318d1e446" ] + }, + "id" : "urn:uuid:d86c15cd-7de8-4a2f-a0f7-b761741894e0" + } ] + }, { + "catenaXId" : "urn:uuid:25e10753-a6e7-491a-a607-b045674b000d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:25e10753-a6e7-491a-a607-b045674b000d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-258157789783454443471424", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:25e10753-a6e7-491a-a607-b045674b000d", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-258157789783454443471424", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:25e10753-a6e7-491a-a607-b045674b000d" ] + }, + "id" : "urn:uuid:9ea805a6-bace-484f-97ba-87cabe8fa529" + } ] + }, { + "catenaXId" : "urn:uuid:31ac2152-d914-4966-925e-5ffacd9b56dd", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:31ac2152-d914-4966-925e-5ffacd9b56dd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-462521937395698138638338", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:31ac2152-d914-4966-925e-5ffacd9b56dd", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-462521937395698138638338", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:31ac2152-d914-4966-925e-5ffacd9b56dd" ] + }, + "id" : "urn:uuid:149dd46e-53c3-4b0c-8532-8d3baf629d2f" + } ] + }, { + "catenaXId" : "urn:uuid:5fbe4950-60c0-4172-ac15-8c8d0f324de4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5fbe4950-60c0-4172-ac15-8c8d0f324de4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-759729869359126726055492", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5fbe4950-60c0-4172-ac15-8c8d0f324de4", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-759729869359126726055492", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5fbe4950-60c0-4172-ac15-8c8d0f324de4" ] + }, + "id" : "urn:uuid:fb1aa209-b47f-4f3e-9c10-fd8acd3949f9" + } ] + }, { + "catenaXId" : "urn:uuid:220f7d14-c8b3-4b24-889f-e9639528aea7", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:220f7d14-c8b3-4b24-889f-e9639528aea7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-261344935041991128164454", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:220f7d14-c8b3-4b24-889f-e9639528aea7", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-261344935041991128164454", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:220f7d14-c8b3-4b24-889f-e9639528aea7" ] + }, + "id" : "urn:uuid:53593e95-632f-405a-b361-06f34d3d8026" + } ] + }, { + "catenaXId" : "urn:uuid:a0c89b26-fcbf-4047-8715-6a909ccc44c2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a0c89b26-fcbf-4047-8715-6a909ccc44c2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-123024246933150379821947", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a0c89b26-fcbf-4047-8715-6a909ccc44c2", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-123024246933150379821947", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a0c89b26-fcbf-4047-8715-6a909ccc44c2" ] + }, + "id" : "urn:uuid:7ceb666f-879c-4657-89c0-3c3ae989c84e" + } ] + }, { + "catenaXId" : "urn:uuid:4154e218-adf0-4a1a-954a-61607659ed91", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4154e218-adf0-4a1a-954a-61607659ed91" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-810146120921785748228425", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4154e218-adf0-4a1a-954a-61607659ed91", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-810146120921785748228425", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4154e218-adf0-4a1a-954a-61607659ed91" ] + }, + "id" : "urn:uuid:2b4ef20d-eff7-4e33-8aea-877712f5baf6" + } ] + }, { + "catenaXId" : "urn:uuid:8184a9e1-a587-4319-9228-3729ed0cd019", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8184a9e1-a587-4319-9228-3729ed0cd019" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-881129117203549444994079", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8184a9e1-a587-4319-9228-3729ed0cd019", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-881129117203549444994079", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8184a9e1-a587-4319-9228-3729ed0cd019" ] + }, + "id" : "urn:uuid:c7e55fc4-6d76-45a4-bd03-daa792062ff9" + } ] + }, { + "catenaXId" : "urn:uuid:9dc6eee5-b4c9-4e12-8145-0cbdb4bc4520", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9dc6eee5-b4c9-4e12-8145-0cbdb4bc4520" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-470451850593302196335942", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9dc6eee5-b4c9-4e12-8145-0cbdb4bc4520", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-470451850593302196335942", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9dc6eee5-b4c9-4e12-8145-0cbdb4bc4520" ] + }, + "id" : "urn:uuid:1af2ea6d-7211-463d-ba9d-f3956b7709db" + } ] + }, { + "catenaXId" : "urn:uuid:e1b86f45-cab7-4be5-9fd3-1bbb1ff8a989", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e1b86f45-cab7-4be5-9fd3-1bbb1ff8a989" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-520278783864546601496545", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e1b86f45-cab7-4be5-9fd3-1bbb1ff8a989", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-520278783864546601496545", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e1b86f45-cab7-4be5-9fd3-1bbb1ff8a989" ] + }, + "id" : "urn:uuid:083b9b85-fd84-423d-8814-a92cc5051d90" + } ] + }, { + "catenaXId" : "urn:uuid:44dce81c-618a-4068-aa2d-fdd0f7a7bdf5", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:44dce81c-618a-4068-aa2d-fdd0f7a7bdf5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-320272988599692895825637", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44dce81c-618a-4068-aa2d-fdd0f7a7bdf5", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-320272988599692895825637", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:44dce81c-618a-4068-aa2d-fdd0f7a7bdf5" ] + }, + "id" : "urn:uuid:99a20610-45e7-47d0-bebf-0d76aa719a68" + } ] + }, { + "catenaXId" : "urn:uuid:9eedcb70-49b8-4a0a-bda2-ffdb4c73e538", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9eedcb70-49b8-4a0a-bda2-ffdb4c73e538" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-044695325153469443296878", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9eedcb70-49b8-4a0a-bda2-ffdb4c73e538", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-044695325153469443296878", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9eedcb70-49b8-4a0a-bda2-ffdb4c73e538" ] + }, + "id" : "urn:uuid:2397e723-47cb-4fb0-8feb-a4d7a6f7db4d" + } ] + }, { + "catenaXId" : "urn:uuid:6d16110b-6a80-4d28-8c58-c71dc9d1f6eb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6d16110b-6a80-4d28-8c58-c71dc9d1f6eb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-879155758450258442329178", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6d16110b-6a80-4d28-8c58-c71dc9d1f6eb", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-879155758450258442329178", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6d16110b-6a80-4d28-8c58-c71dc9d1f6eb" ] + }, + "id" : "urn:uuid:d88ba655-980c-41eb-a4d2-3f2a124ab276" + } ] + }, { + "catenaXId" : "urn:uuid:c80cfdc9-2d97-4856-bcc8-cea1ce8f9e56", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c80cfdc9-2d97-4856-bcc8-cea1ce8f9e56" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-387444429458170157925164", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c80cfdc9-2d97-4856-bcc8-cea1ce8f9e56", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-387444429458170157925164", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c80cfdc9-2d97-4856-bcc8-cea1ce8f9e56" ] + }, + "id" : "urn:uuid:b65b2dca-09e5-46b7-bfa6-906928761a61" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", + "childItems" : [ { + "catenaXId" : "urn:uuid:2097a597-97c1-42d1-9595-5a4a4650b764", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dc3a42b1-c01b-42ce-8735-b734fcf9b391", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-135903857622946366743856", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-135903857622946366743856", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-135903857622946366743856", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8" ] + }, + "id" : "urn:uuid:843f15ed-fe68-449b-98fb-db2be51af23b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 5, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 28, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 49, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:2097a597-97c1-42d1-9595-5a4a4650b764", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2097a597-97c1-42d1-9595-5a4a4650b764" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "02371K8-67", + "key" : "manufacturerPartId" + }, { + "value" : "NO-788481157629920780986588", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2097a597-97c1-42d1-9595-5a4a4650b764", + "partTypeInformation" : { + "manufacturerPartId" : "02371K8-67", + "customerPartId" : "02371K8-67", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 37, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 49, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097", + "childItems" : [ { + "catenaXId" : "urn:uuid:58bc62b1-3493-47ea-8116-5583c3d9980d", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "24949V4-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-088346210938006647358680", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097", + "partTypeInformation" : { + "manufacturerPartId" : "24949V4-16", + "customerPartId" : "24949V4-16", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-088346210938006647358680", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "24949V4-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097" ] + }, + "id" : "urn:uuid:edc80cb2-db70-4c99-9692-c5afee4c84b4" + } ] + }, { + "catenaXId" : "urn:uuid:58bc62b1-3493-47ea-8116-5583c3d9980d", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:58bc62b1-3493-47ea-8116-5583c3d9980d" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "66287C7-42", + "key" : "manufacturerPartId" + }, { + "value" : "NO-711835277768311954026836", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:58bc62b1-3493-47ea-8116-5583c3d9980d", + "partTypeInformation" : { + "manufacturerPartId" : "66287C7-42", + "customerPartId" : "66287C7-42", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 57, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 43, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc3a42b1-c01b-42ce-8735-b734fcf9b391", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:dc3a42b1-c01b-42ce-8735-b734fcf9b391", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dc3a42b1-c01b-42ce-8735-b734fcf9b391" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "70056M7-56", + "key" : "manufacturerPartId" + }, { + "value" : "NO-736011219119652388814346", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dc3a42b1-c01b-42ce-8735-b734fcf9b391", + "partTypeInformation" : { + "manufacturerPartId" : "70056M7-56", + "customerPartId" : "70056M7-56", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4", + "childItems" : [ { + "catenaXId" : "urn:uuid:799426f8-474d-4d85-9137-d46129cf5e12", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:335e9821-0868-4424-9040-417db5947f5d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2811981a-3adf-4240-b93e-f608e830b1e9", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "08897H5-06", + "key" : "manufacturerPartId" + }, { + "value" : "NO-197127900979355267794820", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4", + "partTypeInformation" : { + "manufacturerPartId" : "08897H5-06", + "customerPartId" : "08897H5-06", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-197127900979355267794820", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08897H5-06", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4" ] + }, + "id" : "urn:uuid:aa52ba3f-cc23-4dd1-8d81-72c78cfdad97" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 79, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:799426f8-474d-4d85-9137-d46129cf5e12", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:799426f8-474d-4d85-9137-d46129cf5e12" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "29946X2-30", + "key" : "manufacturerPartId" + }, { + "value" : "NO-669563149965996668032455", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:799426f8-474d-4d85-9137-d46129cf5e12", + "partTypeInformation" : { + "manufacturerPartId" : "29946X2-30", + "customerPartId" : "29946X2-30", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 54, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 81, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:335e9821-0868-4424-9040-417db5947f5d", + "childItems" : [ { + "catenaXId" : "urn:uuid:a985ee5b-2d8e-427c-b67a-1db6f1b93fce", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:335e9821-0868-4424-9040-417db5947f5d", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:335e9821-0868-4424-9040-417db5947f5d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "05379J6-18", + "key" : "manufacturerPartId" + }, { + "value" : "NO-965386759272811777621226", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:335e9821-0868-4424-9040-417db5947f5d", + "partTypeInformation" : { + "manufacturerPartId" : "05379J6-18", + "customerPartId" : "05379J6-18", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-965386759272811777621226", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "05379J6-18", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:335e9821-0868-4424-9040-417db5947f5d" ] + }, + "id" : "urn:uuid:b5b2cb43-03b7-461a-9abd-4074dacd6763" + } ] + }, { + "catenaXId" : "urn:uuid:a985ee5b-2d8e-427c-b67a-1db6f1b93fce", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:335e9821-0868-4424-9040-417db5947f5d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a985ee5b-2d8e-427c-b67a-1db6f1b93fce" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "97595B4-42", + "key" : "manufacturerPartId" + }, { + "value" : "NO-768662439729980501021617", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a985ee5b-2d8e-427c-b67a-1db6f1b93fce", + "partTypeInformation" : { + "manufacturerPartId" : "97595B4-42", + "customerPartId" : "97595B4-42", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 87, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 88, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:2811981a-3adf-4240-b93e-f608e830b1e9", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2811981a-3adf-4240-b93e-f608e830b1e9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "83794G9-31", + "key" : "manufacturerPartId" + }, { + "value" : "NO-671049353149584822291207", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2811981a-3adf-4240-b93e-f608e830b1e9", + "partTypeInformation" : { + "manufacturerPartId" : "83794G9-31", + "customerPartId" : "83794G9-31", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-671049353149584822291207", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "83794G9-31", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2811981a-3adf-4240-b93e-f608e830b1e9" ] + }, + "id" : "urn:uuid:8e2f5abe-d9a2-42bf-9560-e55b8accf76b" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 28, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 44, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "engine" : { + "size" : 2998, + "power" : 154 + }, + "emptyWeight" : 1.79, + "fuel" : "petrol", + "vehicleModel" : "Vehicle Combustion", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + }, { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "childItems" : [ { + "catenaXId" : "urn:uuid:c56c8495-c663-491a-b19e-803cb75c5b06", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:94392891-51de-41a0-a22b-3b91d0007594", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:50a3fe7e-43a2-4482-b827-4a291d1fb101", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:33a0b6f6-6aee-4c84-a941-8facfca00676", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1fadc31f-319b-4174-882d-8726225344a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0616a8dc-f7ab-468b-b472-429b8287b73b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a257342-95ed-403f-8cfb-903b65eb3fec", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a56eb62d-bd6e-48e4-ab3f-369760f9483d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ef14a302-30db-48f2-9587-8da45b44bbaf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:40899128-9044-485e-826e-c271d8987f92", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a0e69a33-4462-4a3d-8f93-d66e923a0c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:abc4fc03-cc66-4328-b9a2-70b1eb5889d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5dc976bd-9509-4546-ba39-e40c3ccf1270", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eb6d2a12-e1dd-4a5b-8583-3d21e863193b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c3e01ae2-8573-4103-a87a-c3b5bb34b48a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:664e07d1-b48a-49d8-bedd-4269234be8a3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c89f4216-abed-408a-8c0f-cb35fe312a28", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1a915873-ff7f-4ca5-9e8b-365b1fb32c84", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6cdb3c09-3773-4520-a8c6-8b547c41f4b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b318f6dd-0edc-4eb5-8d7c-8d38828125f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3ffab5d9-bf36-4caa-92cb-0df0990bd1d4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e5326f8f-1237-4271-aab9-c74de8a63dd9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:62c185e0-ab65-4129-bafb-9a7218c23612", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ebfaa0b7-0030-489c-8558-c5ebc3e64333", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f944b674-f9d1-4500-ad3b-421188a1e491", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:754e2f2b-c91a-434f-a9a5-817f7a47511d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3e49560c-95db-4b04-b984-d8b21639a9f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:665c9779-2a5a-4b44-8e0a-91c276fde8e3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8ad1fe78-5285-46a8-9afb-0807c1be7981", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:175d6bda-4ab2-4024-ae81-63c373d29d10", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "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" + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "ZC-46", + "key" : "manufacturerPartId" + }, { + "value" : "OMCLNVPYKUQCNIBOW", + "key" : "partInstanceId" + }, { + "value" : "OMCLNVPYKUQCNIBOW", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2016-04-10T18:49:49.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "partTypeInformation" : { + "manufacturerPartId" : "ZC-46", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCLNVPYKUQCNIBOW", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "ZC-46", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_combustion.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Combustion" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, + "id" : "urn:uuid:50f9e7cb-2c68-49f7-9d71-a5adb7698981" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 19, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 70, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 65, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 20, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 72, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 56, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 10, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 56, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 8, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 55, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:c56c8495-c663-491a-b19e-803cb75c5b06", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c56c8495-c663-491a-b19e-803cb75c5b06" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-955171068801881375256281", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c56c8495-c663-491a-b19e-803cb75c5b06", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-955171068801881375256281", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c56c8495-c663-491a-b19e-803cb75c5b06" ] + }, + "id" : "urn:uuid:4551409a-3ffe-4f29-ba41-0a1fb8e286c2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:94392891-51de-41a0-a22b-3b91d0007594", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:94392891-51de-41a0-a22b-3b91d0007594" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-828729187013493680413317", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:94392891-51de-41a0-a22b-3b91d0007594", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-828729187013493680413317", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:94392891-51de-41a0-a22b-3b91d0007594" ] + }, + "id" : "urn:uuid:d26ce7f7-f625-4f1f-971a-c3d28406129a" + } ] + }, { + "catenaXId" : "urn:uuid:50a3fe7e-43a2-4482-b827-4a291d1fb101", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:50a3fe7e-43a2-4482-b827-4a291d1fb101" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-114321609528396929127658", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:50a3fe7e-43a2-4482-b827-4a291d1fb101", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-114321609528396929127658", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:50a3fe7e-43a2-4482-b827-4a291d1fb101" ] + }, + "id" : "urn:uuid:0bbda1dd-06c4-48f5-b032-eb99c2a4620e" + } ] + }, { + "catenaXId" : "urn:uuid:33a0b6f6-6aee-4c84-a941-8facfca00676", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:33a0b6f6-6aee-4c84-a941-8facfca00676" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-737891214674811834299643", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:33a0b6f6-6aee-4c84-a941-8facfca00676", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-737891214674811834299643", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:33a0b6f6-6aee-4c84-a941-8facfca00676" ] + }, + "id" : "urn:uuid:dc477aa9-908b-4d05-b45b-4d60d687aa75" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51", + "childItems" : [ { + "catenaXId" : "urn:uuid:c2bf9e12-e661-4401-8c85-3b2ed1bbdcac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-866070962713837951982350", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-866070962713837951982350", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51" ] + }, + "id" : "urn:uuid:d5bd8f30-167f-4eee-8af2-2ceb82912da8" + } ] + }, { + "catenaXId" : "urn:uuid:c2bf9e12-e661-4401-8c85-3b2ed1bbdcac", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c2bf9e12-e661-4401-8c85-3b2ed1bbdcac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-753561431214679378500533", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c2bf9e12-e661-4401-8c85-3b2ed1bbdcac", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-753561431214679378500533", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c2bf9e12-e661-4401-8c85-3b2ed1bbdcac" ] + }, + "id" : "urn:uuid:476da1cb-3036-4730-a8ae-a2f1a308f095" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517", + "childItems" : [ { + "catenaXId" : "urn:uuid:06accb9d-6328-4796-a51d-2771ec5a3d41", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-156449081735037209462109", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-156449081735037209462109", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517" ] + }, + "id" : "urn:uuid:492e1cad-8e0b-495d-a638-fdae98a3b552" + } ] + }, { + "catenaXId" : "urn:uuid:06accb9d-6328-4796-a51d-2771ec5a3d41", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:06accb9d-6328-4796-a51d-2771ec5a3d41" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-523607259543047915854376", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:06accb9d-6328-4796-a51d-2771ec5a3d41", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-523607259543047915854376", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:06accb9d-6328-4796-a51d-2771ec5a3d41" ] + }, + "id" : "urn:uuid:fffc3b6d-20d4-4749-933a-239fc74b9a5e" + } ] + }, { + "catenaXId" : "urn:uuid:1fadc31f-319b-4174-882d-8726225344a7", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1fadc31f-319b-4174-882d-8726225344a7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-574092290994608727342467", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1fadc31f-319b-4174-882d-8726225344a7", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-574092290994608727342467", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1fadc31f-319b-4174-882d-8726225344a7" ] + }, + "id" : "urn:uuid:7369eafe-6845-4ea7-89ee-b650a68266bf" + } ] + }, { + "catenaXId" : "urn:uuid:0616a8dc-f7ab-468b-b472-429b8287b73b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0616a8dc-f7ab-468b-b472-429b8287b73b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-673687007165125329190851", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0616a8dc-f7ab-468b-b472-429b8287b73b", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-673687007165125329190851", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0616a8dc-f7ab-468b-b472-429b8287b73b" ] + }, + "id" : "urn:uuid:77259e38-f423-43a7-b536-88e7d89da951" + } ] + }, { + "catenaXId" : "urn:uuid:0a257342-95ed-403f-8cfb-903b65eb3fec", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a257342-95ed-403f-8cfb-903b65eb3fec" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-754423708314452550818394", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a257342-95ed-403f-8cfb-903b65eb3fec", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-754423708314452550818394", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a257342-95ed-403f-8cfb-903b65eb3fec" ] + }, + "id" : "urn:uuid:599e6844-2aa8-48c0-8154-3f477a0965fe" + } ] + }, { + "catenaXId" : "urn:uuid:a56eb62d-bd6e-48e4-ab3f-369760f9483d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a56eb62d-bd6e-48e4-ab3f-369760f9483d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-877407304914200304509143", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a56eb62d-bd6e-48e4-ab3f-369760f9483d", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-877407304914200304509143", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a56eb62d-bd6e-48e4-ab3f-369760f9483d" ] + }, + "id" : "urn:uuid:a740d147-7557-4b62-9d03-ff7650c63858" + } ] + }, { + "catenaXId" : "urn:uuid:ef14a302-30db-48f2-9587-8da45b44bbaf", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ef14a302-30db-48f2-9587-8da45b44bbaf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-255187841152065665034484", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ef14a302-30db-48f2-9587-8da45b44bbaf", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-255187841152065665034484", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ef14a302-30db-48f2-9587-8da45b44bbaf" ] + }, + "id" : "urn:uuid:6250ab0b-da63-4fdc-8789-e5105f8ef062" + } ] + }, { + "catenaXId" : "urn:uuid:40899128-9044-485e-826e-c271d8987f92", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:40899128-9044-485e-826e-c271d8987f92" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-472649938201471378105426", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:40899128-9044-485e-826e-c271d8987f92", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-472649938201471378105426", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:40899128-9044-485e-826e-c271d8987f92" ] + }, + "id" : "urn:uuid:3c20527c-2841-431a-8755-b9ed26c54b8f" + } ] + }, { + "catenaXId" : "urn:uuid:a0e69a33-4462-4a3d-8f93-d66e923a0c3a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a0e69a33-4462-4a3d-8f93-d66e923a0c3a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-074479981201780183322343", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a0e69a33-4462-4a3d-8f93-d66e923a0c3a", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-074479981201780183322343", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a0e69a33-4462-4a3d-8f93-d66e923a0c3a" ] + }, + "id" : "urn:uuid:d0afee38-0b77-4d13-9f7f-df2612714eff" + } ] + }, { + "catenaXId" : "urn:uuid:abc4fc03-cc66-4328-b9a2-70b1eb5889d8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:abc4fc03-cc66-4328-b9a2-70b1eb5889d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-359733589080493148531056", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:abc4fc03-cc66-4328-b9a2-70b1eb5889d8", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-359733589080493148531056", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:abc4fc03-cc66-4328-b9a2-70b1eb5889d8" ] + }, + "id" : "urn:uuid:aadb1fee-5ee6-4df2-b5ca-d5b776b4cf32" + } ] + }, { + "catenaXId" : "urn:uuid:5dc976bd-9509-4546-ba39-e40c3ccf1270", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5dc976bd-9509-4546-ba39-e40c3ccf1270" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-825223428072058740244599", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5dc976bd-9509-4546-ba39-e40c3ccf1270", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-825223428072058740244599", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5dc976bd-9509-4546-ba39-e40c3ccf1270" ] + }, + "id" : "urn:uuid:57adbbdf-4aae-492c-8bf0-cc4a70be93da" + } ] + }, { + "catenaXId" : "urn:uuid:eb6d2a12-e1dd-4a5b-8583-3d21e863193b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eb6d2a12-e1dd-4a5b-8583-3d21e863193b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-996465908738167039042915", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eb6d2a12-e1dd-4a5b-8583-3d21e863193b", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-996465908738167039042915", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:eb6d2a12-e1dd-4a5b-8583-3d21e863193b" ] + }, + "id" : "urn:uuid:39b28e81-e0d5-4155-a0ce-606f06ff4f3d" + } ] + }, { + "catenaXId" : "urn:uuid:c3e01ae2-8573-4103-a87a-c3b5bb34b48a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c3e01ae2-8573-4103-a87a-c3b5bb34b48a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-721791547059241404691813", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c3e01ae2-8573-4103-a87a-c3b5bb34b48a", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-721791547059241404691813", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c3e01ae2-8573-4103-a87a-c3b5bb34b48a" ] + }, + "id" : "urn:uuid:45181a4f-d3d5-4476-aab4-fb851e972ab8" + } ] + }, { + "catenaXId" : "urn:uuid:664e07d1-b48a-49d8-bedd-4269234be8a3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:664e07d1-b48a-49d8-bedd-4269234be8a3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-557215007129039654642078", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:664e07d1-b48a-49d8-bedd-4269234be8a3", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-557215007129039654642078", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:664e07d1-b48a-49d8-bedd-4269234be8a3" ] + }, + "id" : "urn:uuid:d995fc67-4d2c-4f78-a35b-8fb912e6c793" + } ] + }, { + "catenaXId" : "urn:uuid:c89f4216-abed-408a-8c0f-cb35fe312a28", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c89f4216-abed-408a-8c0f-cb35fe312a28" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-446693971588530215697469", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c89f4216-abed-408a-8c0f-cb35fe312a28", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-446693971588530215697469", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c89f4216-abed-408a-8c0f-cb35fe312a28" ] + }, + "id" : "urn:uuid:6aa3e6c6-c93e-4625-a593-f670a5fee6d7" + } ] + }, { + "catenaXId" : "urn:uuid:1a915873-ff7f-4ca5-9e8b-365b1fb32c84", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1a915873-ff7f-4ca5-9e8b-365b1fb32c84" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-271923927992699253251409", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1a915873-ff7f-4ca5-9e8b-365b1fb32c84", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-271923927992699253251409", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1a915873-ff7f-4ca5-9e8b-365b1fb32c84" ] + }, + "id" : "urn:uuid:504dc431-d730-436e-9636-3731db186375" + } ] + }, { + "catenaXId" : "urn:uuid:6cdb3c09-3773-4520-a8c6-8b547c41f4b2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6cdb3c09-3773-4520-a8c6-8b547c41f4b2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-451181211519517858166256", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6cdb3c09-3773-4520-a8c6-8b547c41f4b2", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-451181211519517858166256", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6cdb3c09-3773-4520-a8c6-8b547c41f4b2" ] + }, + "id" : "urn:uuid:6169bc25-0bf2-496f-9a34-1e86b2d2e9a0" + } ] + }, { + "catenaXId" : "urn:uuid:b318f6dd-0edc-4eb5-8d7c-8d38828125f3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b318f6dd-0edc-4eb5-8d7c-8d38828125f3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-007577719540361695376956", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b318f6dd-0edc-4eb5-8d7c-8d38828125f3", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-007577719540361695376956", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b318f6dd-0edc-4eb5-8d7c-8d38828125f3" ] + }, + "id" : "urn:uuid:beb19870-a420-4e68-bad5-1dd332b9c67a" + } ] + }, { + "catenaXId" : "urn:uuid:3ffab5d9-bf36-4caa-92cb-0df0990bd1d4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3ffab5d9-bf36-4caa-92cb-0df0990bd1d4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-905572159589961857666985", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3ffab5d9-bf36-4caa-92cb-0df0990bd1d4", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-905572159589961857666985", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3ffab5d9-bf36-4caa-92cb-0df0990bd1d4" ] + }, + "id" : "urn:uuid:f3767042-f1aa-46e2-a57d-3b07fd2e6866" + } ] + }, { + "catenaXId" : "urn:uuid:e5326f8f-1237-4271-aab9-c74de8a63dd9", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e5326f8f-1237-4271-aab9-c74de8a63dd9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-126929264318660316815346", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e5326f8f-1237-4271-aab9-c74de8a63dd9", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-126929264318660316815346", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e5326f8f-1237-4271-aab9-c74de8a63dd9" ] + }, + "id" : "urn:uuid:46786e22-18cc-4b6f-aeab-c28cd5870578" + } ] + }, { + "catenaXId" : "urn:uuid:62c185e0-ab65-4129-bafb-9a7218c23612", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:62c185e0-ab65-4129-bafb-9a7218c23612" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-879235323821493211167261", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:62c185e0-ab65-4129-bafb-9a7218c23612", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-879235323821493211167261", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:62c185e0-ab65-4129-bafb-9a7218c23612" ] + }, + "id" : "urn:uuid:96e5629d-1eb3-4214-a23b-9af618083c86" + } ] + }, { + "catenaXId" : "urn:uuid:ebfaa0b7-0030-489c-8558-c5ebc3e64333", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebfaa0b7-0030-489c-8558-c5ebc3e64333" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-936257299107126226880620", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebfaa0b7-0030-489c-8558-c5ebc3e64333", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-936257299107126226880620", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ebfaa0b7-0030-489c-8558-c5ebc3e64333" ] + }, + "id" : "urn:uuid:14b174e2-3b77-470d-8144-7dfd89551106" + } ] + }, { + "catenaXId" : "urn:uuid:f944b674-f9d1-4500-ad3b-421188a1e491", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f944b674-f9d1-4500-ad3b-421188a1e491" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-118840574725882711020621", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f944b674-f9d1-4500-ad3b-421188a1e491", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-118840574725882711020621", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f944b674-f9d1-4500-ad3b-421188a1e491" ] + }, + "id" : "urn:uuid:a165e659-5645-4d39-8aee-029708c080ce" + } ] + }, { + "catenaXId" : "urn:uuid:754e2f2b-c91a-434f-a9a5-817f7a47511d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:754e2f2b-c91a-434f-a9a5-817f7a47511d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-741877668893574809190562", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:754e2f2b-c91a-434f-a9a5-817f7a47511d", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-741877668893574809190562", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:754e2f2b-c91a-434f-a9a5-817f7a47511d" ] + }, + "id" : "urn:uuid:53cab076-5b87-4c5b-b0e7-c7755cdea8fb" + } ] + }, { + "catenaXId" : "urn:uuid:3e49560c-95db-4b04-b984-d8b21639a9f3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3e49560c-95db-4b04-b984-d8b21639a9f3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-201320120535942399992318", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3e49560c-95db-4b04-b984-d8b21639a9f3", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-201320120535942399992318", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3e49560c-95db-4b04-b984-d8b21639a9f3" ] + }, + "id" : "urn:uuid:6a12aaa8-ef95-477c-b05f-4a2b14155903" + } ] + }, { + "catenaXId" : "urn:uuid:665c9779-2a5a-4b44-8e0a-91c276fde8e3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:665c9779-2a5a-4b44-8e0a-91c276fde8e3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-670550853524033504564915", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:665c9779-2a5a-4b44-8e0a-91c276fde8e3", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-670550853524033504564915", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:665c9779-2a5a-4b44-8e0a-91c276fde8e3" ] + }, + "id" : "urn:uuid:5a6cfa53-c9f0-4cf5-ba6a-8d66dad1c0d6" + } ] + }, { + "catenaXId" : "urn:uuid:8ad1fe78-5285-46a8-9afb-0807c1be7981", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8ad1fe78-5285-46a8-9afb-0807c1be7981" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-163156247876393509445329", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8ad1fe78-5285-46a8-9afb-0807c1be7981", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-163156247876393509445329", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8ad1fe78-5285-46a8-9afb-0807c1be7981" ] + }, + "id" : "urn:uuid:7c9a14bf-c954-447b-a5de-c23288ebac91" + } ] + }, { + "catenaXId" : "urn:uuid:175d6bda-4ab2-4024-ae81-63c373d29d10", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:175d6bda-4ab2-4024-ae81-63c373d29d10" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-598761199319038058598952", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:175d6bda-4ab2-4024-ae81-63c373d29d10", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-598761199319038058598952", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:175d6bda-4ab2-4024-ae81-63c373d29d10" ] + }, + "id" : "urn:uuid:553cbe5b-9903-45bb-b837-7672ddd22fff" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", + "childItems" : [ { + "catenaXId" : "urn:uuid:610c3b7e-2809-4055-9206-7d411de64da7", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:430ec8c2-a0c2-468c-b23b-05bc1b6ea826", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-483317435264591356200366", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-483317435264591356200366", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-483317435264591356200366", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d" ] + }, + "id" : "urn:uuid:7b56440d-3f0c-4510-883c-d7517dfe3b06" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 75, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 33, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 70, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:610c3b7e-2809-4055-9206-7d411de64da7", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:610c3b7e-2809-4055-9206-7d411de64da7" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "25701K1-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-753095410661613621950842", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:610c3b7e-2809-4055-9206-7d411de64da7", + "partTypeInformation" : { + "manufacturerPartId" : "25701K1-49", + "customerPartId" : "25701K1-49", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 41, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 76, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7", + "childItems" : [ { + "catenaXId" : "urn:uuid:3a304af0-0c2a-481a-af07-134a0ea18ebc", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "98096F3-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-069305524990998910654233", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7", + "partTypeInformation" : { + "manufacturerPartId" : "98096F3-49", + "customerPartId" : "98096F3-49", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-069305524990998910654233", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "98096F3-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7" ] + }, + "id" : "urn:uuid:57b8c172-c222-4dcc-99a9-17d9ea8ecdf4" + } ] + }, { + "catenaXId" : "urn:uuid:3a304af0-0c2a-481a-af07-134a0ea18ebc", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3a304af0-0c2a-481a-af07-134a0ea18ebc" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "53721Y2-93", + "key" : "manufacturerPartId" + }, { + "value" : "NO-308149782090795546323871", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3a304af0-0c2a-481a-af07-134a0ea18ebc", + "partTypeInformation" : { + "manufacturerPartId" : "53721Y2-93", + "customerPartId" : "53721Y2-93", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 79, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 63, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:430ec8c2-a0c2-468c-b23b-05bc1b6ea826", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:430ec8c2-a0c2-468c-b23b-05bc1b6ea826", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:430ec8c2-a0c2-468c-b23b-05bc1b6ea826" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "08391B5-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-323060766919542647370704", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:430ec8c2-a0c2-468c-b23b-05bc1b6ea826", + "partTypeInformation" : { + "manufacturerPartId" : "08391B5-48", + "customerPartId" : "08391B5-48", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75", + "childItems" : [ { + "catenaXId" : "urn:uuid:14f52091-249f-4ee6-a0f8-1724ead45d46", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bdadb221-5d9b-4dc2-801c-12ca006b4ede", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "05366X6-27", + "key" : "manufacturerPartId" + }, { + "value" : "NO-663478797419793813235060", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75", + "partTypeInformation" : { + "manufacturerPartId" : "05366X6-27", + "customerPartId" : "05366X6-27", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-663478797419793813235060", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "05366X6-27", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75" ] + }, + "id" : "urn:uuid:91480e30-ea60-421e-b4aa-efb608b4861e" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 61, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:14f52091-249f-4ee6-a0f8-1724ead45d46", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:14f52091-249f-4ee6-a0f8-1724ead45d46" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "22070R3-86", + "key" : "manufacturerPartId" + }, { + "value" : "NO-604914361507601308263987", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:14f52091-249f-4ee6-a0f8-1724ead45d46", + "partTypeInformation" : { + "manufacturerPartId" : "22070R3-86", + "customerPartId" : "22070R3-86", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 84, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 43, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49", + "childItems" : [ { + "catenaXId" : "urn:uuid:a6ff547d-3aec-4eb7-bd80-2c467fb7aa24", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "20999G4-29", + "key" : "manufacturerPartId" + }, { + "value" : "NO-972918201001258778750903", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49", + "partTypeInformation" : { + "manufacturerPartId" : "20999G4-29", + "customerPartId" : "20999G4-29", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-972918201001258778750903", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20999G4-29", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49" ] + }, + "id" : "urn:uuid:59571654-54d2-47df-9a85-c5206c647872" + } ] + }, { + "catenaXId" : "urn:uuid:a6ff547d-3aec-4eb7-bd80-2c467fb7aa24", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a6ff547d-3aec-4eb7-bd80-2c467fb7aa24" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "84919X1-06", + "key" : "manufacturerPartId" + }, { + "value" : "NO-105141581088846524629307", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a6ff547d-3aec-4eb7-bd80-2c467fb7aa24", + "partTypeInformation" : { + "manufacturerPartId" : "84919X1-06", + "customerPartId" : "84919X1-06", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 43, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 51, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:bdadb221-5d9b-4dc2-801c-12ca006b4ede", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bdadb221-5d9b-4dc2-801c-12ca006b4ede" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "00377I5-97", + "key" : "manufacturerPartId" + }, { + "value" : "NO-070983765256994790211123", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bdadb221-5d9b-4dc2-801c-12ca006b4ede", + "partTypeInformation" : { + "manufacturerPartId" : "00377I5-97", + "customerPartId" : "00377I5-97", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-070983765256994790211123", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00377I5-97", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bdadb221-5d9b-4dc2-801c-12ca006b4ede" ] + }, + "id" : "urn:uuid:5efc5cb2-40da-4d66-8f13-3114105e8b06" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 82, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 61, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "engine" : { + "size" : 2998, + "power" : 154 + }, + "emptyWeight" : 1.79, + "fuel" : "petrol", + "vehicleModel" : "Vehicle Combustion", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "childItems" : [ { + "catenaXId" : "urn:uuid:008f5710-903c-4281-ba91-0f1a5f165422", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c724ee23-9e58-4c80-be7f-47192d98a418", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:19da9c69-825d-4343-9ba6-5f3887e7d789", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:de9ab0e9-4d03-450c-bd01-86f5408bc516", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b986ee0a-7b14-4020-8f78-f92e82669a7d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7738d4a7-0b76-4502-b009-93655f46d44e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d18f20cc-c779-4592-a2c4-15bde849e7e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:01274f52-bc81-4bd5-b101-80dda2c21080", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6db4bf93-d388-4fb8-9818-769e710626fd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:16df227f-0def-4ea5-b0ef-1bf122093c5e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4dfa7800-45f7-4644-85fa-ee9d1aebc326", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4ced8f3d-d7d2-4904-9124-58d23bab9261", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e5f95d60-078a-4c77-93a6-106ee56aa491", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8960a8bf-bdab-4a11-a4a6-052c83371750", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e84403f3-5c13-4c55-aff2-dddc4c20cec8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:46a8c001-1dc4-42a4-9468-a2cbf6822d6c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fb0eafb0-388d-49b8-a620-9efeb01ea0d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b5fe6a3a-0c48-4033-90a7-7b43ba99445c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:209fa434-08c6-4dc4-8671-cc94f1b50e3f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:721a91cd-1d95-4f5c-a98b-2d3e353afbe4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:531d9e13-19ec-4903-ac7a-4f3a333c105a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4631a586-b0fb-4af1-94b0-b333cc8e4748", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6a3b9195-a61f-4846-a882-15268df819af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e0bad19c-5bfc-46f5-9f46-d26c0f6eea6a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d1e71ea7-29f2-4f39-9d5d-65a37ad47777", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8bb75f0b-1a60-4e69-9b39-c859f6205782", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8b3c5ad6-e4bd-4227-b245-e8cba8b1e4e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:322bb7e9-e9de-4de6-8e4c-22446dfc5e1b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2d74bb30-3a72-4561-ab19-0446606774b8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:abeba0ea-a269-4c12-bf65-c4f631981be4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "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" + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "TT-48", + "key" : "manufacturerPartId" + }, { + "value" : "OMCXYXGFMJIBYQLBL", + "key" : "partInstanceId" + }, { + "value" : "OMCXYXGFMJIBYQLBL", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2015-03-16T18:54:31.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "partTypeInformation" : { + "manufacturerPartId" : "TT-48", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCXYXGFMJIBYQLBL", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "TT-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_combustion.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Combustion" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, + "id" : "urn:uuid:3f686abb-f596-48fb-9bc9-b7600b41051e" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 68, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 26, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 13, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 71, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 89, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 19, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 11, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 36, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 20, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 89, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:008f5710-903c-4281-ba91-0f1a5f165422", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:008f5710-903c-4281-ba91-0f1a5f165422" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-882307571059784427264969", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:008f5710-903c-4281-ba91-0f1a5f165422", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-882307571059784427264969", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:008f5710-903c-4281-ba91-0f1a5f165422" ] + }, + "id" : "urn:uuid:4e510a74-5987-4409-9888-37f9808d1c18" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:c724ee23-9e58-4c80-be7f-47192d98a418", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c724ee23-9e58-4c80-be7f-47192d98a418" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-597802675460113744987936", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c724ee23-9e58-4c80-be7f-47192d98a418", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-597802675460113744987936", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c724ee23-9e58-4c80-be7f-47192d98a418" ] + }, + "id" : "urn:uuid:b21f0232-4327-43f4-aacb-80289ec67ee8" + } ] + }, { + "catenaXId" : "urn:uuid:19da9c69-825d-4343-9ba6-5f3887e7d789", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:19da9c69-825d-4343-9ba6-5f3887e7d789" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-200731925248973952586284", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:19da9c69-825d-4343-9ba6-5f3887e7d789", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-200731925248973952586284", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:19da9c69-825d-4343-9ba6-5f3887e7d789" ] + }, + "id" : "urn:uuid:7e50a511-9594-471e-b9fd-06575c27e0f2" + } ] + }, { + "catenaXId" : "urn:uuid:de9ab0e9-4d03-450c-bd01-86f5408bc516", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:de9ab0e9-4d03-450c-bd01-86f5408bc516" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-431863036377240603860122", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:de9ab0e9-4d03-450c-bd01-86f5408bc516", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-431863036377240603860122", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:de9ab0e9-4d03-450c-bd01-86f5408bc516" ] + }, + "id" : "urn:uuid:65e8adc5-d533-4da5-9d83-615a150707c4" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8", + "childItems" : [ { + "catenaXId" : "urn:uuid:b756238d-0f74-48c1-987c-fec796f43b4b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-429347807697579548715192", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-429347807697579548715192", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8" ] + }, + "id" : "urn:uuid:bc4de026-81ae-4a30-8cb9-e3ea5ec2e6e3" + } ] + }, { + "catenaXId" : "urn:uuid:b756238d-0f74-48c1-987c-fec796f43b4b", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b756238d-0f74-48c1-987c-fec796f43b4b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-598710699218775720432003", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b756238d-0f74-48c1-987c-fec796f43b4b", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-598710699218775720432003", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b756238d-0f74-48c1-987c-fec796f43b4b" ] + }, + "id" : "urn:uuid:970d1598-6fc9-44a2-a2f4-58a58d2f6a72" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8", + "childItems" : [ { + "catenaXId" : "urn:uuid:0637d576-b597-418f-8fc5-fbbc72ea47a6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-817510823211750345874109", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-817510823211750345874109", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8" ] + }, + "id" : "urn:uuid:9bfe7a39-7c5e-4c6d-9b26-a05d9cabcaa5" + } ] + }, { + "catenaXId" : "urn:uuid:0637d576-b597-418f-8fc5-fbbc72ea47a6", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0637d576-b597-418f-8fc5-fbbc72ea47a6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-551387328909897594102188", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0637d576-b597-418f-8fc5-fbbc72ea47a6", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-551387328909897594102188", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0637d576-b597-418f-8fc5-fbbc72ea47a6" ] + }, + "id" : "urn:uuid:3bf73f7f-42ae-4039-8e26-1884909f1b2b" + } ] + }, { + "catenaXId" : "urn:uuid:b986ee0a-7b14-4020-8f78-f92e82669a7d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b986ee0a-7b14-4020-8f78-f92e82669a7d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-031434624443329050821296", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b986ee0a-7b14-4020-8f78-f92e82669a7d", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-031434624443329050821296", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b986ee0a-7b14-4020-8f78-f92e82669a7d" ] + }, + "id" : "urn:uuid:84905085-8efa-4cc1-a73a-436ec55c482f" + } ] + }, { + "catenaXId" : "urn:uuid:7738d4a7-0b76-4502-b009-93655f46d44e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7738d4a7-0b76-4502-b009-93655f46d44e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-418107105970849143149282", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7738d4a7-0b76-4502-b009-93655f46d44e", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-418107105970849143149282", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7738d4a7-0b76-4502-b009-93655f46d44e" ] + }, + "id" : "urn:uuid:b6a2a0ee-9c92-44c4-a4f5-3852cdd1ccdb" + } ] + }, { + "catenaXId" : "urn:uuid:d18f20cc-c779-4592-a2c4-15bde849e7e8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d18f20cc-c779-4592-a2c4-15bde849e7e8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-185689613776350278594086", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d18f20cc-c779-4592-a2c4-15bde849e7e8", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-185689613776350278594086", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d18f20cc-c779-4592-a2c4-15bde849e7e8" ] + }, + "id" : "urn:uuid:f7a492a9-3eec-49d0-997b-f5c905ca1735" + } ] + }, { + "catenaXId" : "urn:uuid:01274f52-bc81-4bd5-b101-80dda2c21080", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:01274f52-bc81-4bd5-b101-80dda2c21080" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-395206470565459393431693", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:01274f52-bc81-4bd5-b101-80dda2c21080", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-395206470565459393431693", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:01274f52-bc81-4bd5-b101-80dda2c21080" ] + }, + "id" : "urn:uuid:a1bc33b6-ac31-4992-9b3c-aa6bd2920501" + } ] + }, { + "catenaXId" : "urn:uuid:6db4bf93-d388-4fb8-9818-769e710626fd", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6db4bf93-d388-4fb8-9818-769e710626fd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-997593993093219991551099", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6db4bf93-d388-4fb8-9818-769e710626fd", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-997593993093219991551099", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6db4bf93-d388-4fb8-9818-769e710626fd" ] + }, + "id" : "urn:uuid:61033550-ef0c-4e9d-b816-b2b08be0c760" + } ] + }, { + "catenaXId" : "urn:uuid:16df227f-0def-4ea5-b0ef-1bf122093c5e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:16df227f-0def-4ea5-b0ef-1bf122093c5e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-805604429577410773563429", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:16df227f-0def-4ea5-b0ef-1bf122093c5e", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-805604429577410773563429", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:16df227f-0def-4ea5-b0ef-1bf122093c5e" ] + }, + "id" : "urn:uuid:5096e791-4c08-467a-bc48-628fd19fb920" + } ] + }, { + "catenaXId" : "urn:uuid:4dfa7800-45f7-4644-85fa-ee9d1aebc326", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4dfa7800-45f7-4644-85fa-ee9d1aebc326" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-120399229235452852735133", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4dfa7800-45f7-4644-85fa-ee9d1aebc326", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-120399229235452852735133", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4dfa7800-45f7-4644-85fa-ee9d1aebc326" ] + }, + "id" : "urn:uuid:49e0558a-56ae-4e0b-b18a-e1102b38f2a8" + } ] + }, { + "catenaXId" : "urn:uuid:4ced8f3d-d7d2-4904-9124-58d23bab9261", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4ced8f3d-d7d2-4904-9124-58d23bab9261" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-659971783387639544533367", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4ced8f3d-d7d2-4904-9124-58d23bab9261", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-659971783387639544533367", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4ced8f3d-d7d2-4904-9124-58d23bab9261" ] + }, + "id" : "urn:uuid:ed219c3e-ee92-46d1-8d91-b771c595c6eb" + } ] + }, { + "catenaXId" : "urn:uuid:e5f95d60-078a-4c77-93a6-106ee56aa491", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e5f95d60-078a-4c77-93a6-106ee56aa491" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-655121605656413554030880", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e5f95d60-078a-4c77-93a6-106ee56aa491", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-655121605656413554030880", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e5f95d60-078a-4c77-93a6-106ee56aa491" ] + }, + "id" : "urn:uuid:43d03b69-9383-4f1a-bb07-dfa8db6ba0ad" + } ] + }, { + "catenaXId" : "urn:uuid:8960a8bf-bdab-4a11-a4a6-052c83371750", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8960a8bf-bdab-4a11-a4a6-052c83371750" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-287794281054119818075140", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8960a8bf-bdab-4a11-a4a6-052c83371750", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-287794281054119818075140", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8960a8bf-bdab-4a11-a4a6-052c83371750" ] + }, + "id" : "urn:uuid:20861f00-200e-48f0-a22d-b73ab49fddcf" + } ] + }, { + "catenaXId" : "urn:uuid:e84403f3-5c13-4c55-aff2-dddc4c20cec8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e84403f3-5c13-4c55-aff2-dddc4c20cec8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-474033993714510243984714", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e84403f3-5c13-4c55-aff2-dddc4c20cec8", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-474033993714510243984714", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e84403f3-5c13-4c55-aff2-dddc4c20cec8" ] + }, + "id" : "urn:uuid:7945c3b2-f121-48e5-b0da-f3cbabbf7695" + } ] + }, { + "catenaXId" : "urn:uuid:46a8c001-1dc4-42a4-9468-a2cbf6822d6c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:46a8c001-1dc4-42a4-9468-a2cbf6822d6c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-583144369200388927107893", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:46a8c001-1dc4-42a4-9468-a2cbf6822d6c", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-583144369200388927107893", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:46a8c001-1dc4-42a4-9468-a2cbf6822d6c" ] + }, + "id" : "urn:uuid:253aab5f-c8ff-451d-8517-bcc446997469" + } ] + }, { + "catenaXId" : "urn:uuid:fb0eafb0-388d-49b8-a620-9efeb01ea0d3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fb0eafb0-388d-49b8-a620-9efeb01ea0d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-572331194440873851306051", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fb0eafb0-388d-49b8-a620-9efeb01ea0d3", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-572331194440873851306051", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fb0eafb0-388d-49b8-a620-9efeb01ea0d3" ] + }, + "id" : "urn:uuid:d321d8e1-8012-44b5-8fe9-9773ce165979" + } ] + }, { + "catenaXId" : "urn:uuid:b5fe6a3a-0c48-4033-90a7-7b43ba99445c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b5fe6a3a-0c48-4033-90a7-7b43ba99445c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-338346849106420306549206", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b5fe6a3a-0c48-4033-90a7-7b43ba99445c", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-338346849106420306549206", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b5fe6a3a-0c48-4033-90a7-7b43ba99445c" ] + }, + "id" : "urn:uuid:4746ea72-cdd2-4b55-93fa-0a4621353204" + } ] + }, { + "catenaXId" : "urn:uuid:209fa434-08c6-4dc4-8671-cc94f1b50e3f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:209fa434-08c6-4dc4-8671-cc94f1b50e3f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-671209620039846029552805", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:209fa434-08c6-4dc4-8671-cc94f1b50e3f", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-671209620039846029552805", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:209fa434-08c6-4dc4-8671-cc94f1b50e3f" ] + }, + "id" : "urn:uuid:18c0abf5-d8ee-427f-8c4c-12a1d64f1e14" + } ] + }, { + "catenaXId" : "urn:uuid:721a91cd-1d95-4f5c-a98b-2d3e353afbe4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:721a91cd-1d95-4f5c-a98b-2d3e353afbe4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-001642312294094385606777", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:721a91cd-1d95-4f5c-a98b-2d3e353afbe4", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-001642312294094385606777", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:721a91cd-1d95-4f5c-a98b-2d3e353afbe4" ] + }, + "id" : "urn:uuid:a7458ff8-5aed-4dbd-a5ce-9ba39f470404" + } ] + }, { + "catenaXId" : "urn:uuid:531d9e13-19ec-4903-ac7a-4f3a333c105a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:531d9e13-19ec-4903-ac7a-4f3a333c105a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-424472768258904540629544", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:531d9e13-19ec-4903-ac7a-4f3a333c105a", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-424472768258904540629544", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:531d9e13-19ec-4903-ac7a-4f3a333c105a" ] + }, + "id" : "urn:uuid:61574515-6321-4f33-a25e-c460089c3225" + } ] + }, { + "catenaXId" : "urn:uuid:4631a586-b0fb-4af1-94b0-b333cc8e4748", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4631a586-b0fb-4af1-94b0-b333cc8e4748" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-352601980642072290983317", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4631a586-b0fb-4af1-94b0-b333cc8e4748", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-352601980642072290983317", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4631a586-b0fb-4af1-94b0-b333cc8e4748" ] + }, + "id" : "urn:uuid:b82b7d44-d8d8-4725-a1e3-91b41ab05c26" + } ] + }, { + "catenaXId" : "urn:uuid:6a3b9195-a61f-4846-a882-15268df819af", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6a3b9195-a61f-4846-a882-15268df819af" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-335691791613379064973632", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6a3b9195-a61f-4846-a882-15268df819af", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-335691791613379064973632", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6a3b9195-a61f-4846-a882-15268df819af" ] + }, + "id" : "urn:uuid:dda8aa43-8f4b-46e8-8e43-a488e06ac4fa" + } ] + }, { + "catenaXId" : "urn:uuid:e0bad19c-5bfc-46f5-9f46-d26c0f6eea6a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e0bad19c-5bfc-46f5-9f46-d26c0f6eea6a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-183778164773917523924305", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0bad19c-5bfc-46f5-9f46-d26c0f6eea6a", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-183778164773917523924305", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e0bad19c-5bfc-46f5-9f46-d26c0f6eea6a" ] + }, + "id" : "urn:uuid:74ba7b99-3b98-4e06-84b2-cc11c500020b" + } ] + }, { + "catenaXId" : "urn:uuid:d1e71ea7-29f2-4f39-9d5d-65a37ad47777", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d1e71ea7-29f2-4f39-9d5d-65a37ad47777" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-325912375175139343151029", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d1e71ea7-29f2-4f39-9d5d-65a37ad47777", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-325912375175139343151029", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d1e71ea7-29f2-4f39-9d5d-65a37ad47777" ] + }, + "id" : "urn:uuid:e8340d96-251e-4b9a-b432-25692ba7d9b6" + } ] + }, { + "catenaXId" : "urn:uuid:8bb75f0b-1a60-4e69-9b39-c859f6205782", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8bb75f0b-1a60-4e69-9b39-c859f6205782" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-045575943742875799060367", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8bb75f0b-1a60-4e69-9b39-c859f6205782", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-045575943742875799060367", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8bb75f0b-1a60-4e69-9b39-c859f6205782" ] + }, + "id" : "urn:uuid:ac2cc373-1fe8-48a2-8610-ef6a89ad6514" + } ] + }, { + "catenaXId" : "urn:uuid:8b3c5ad6-e4bd-4227-b245-e8cba8b1e4e8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8b3c5ad6-e4bd-4227-b245-e8cba8b1e4e8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-214189560398676274709895", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8b3c5ad6-e4bd-4227-b245-e8cba8b1e4e8", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-214189560398676274709895", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8b3c5ad6-e4bd-4227-b245-e8cba8b1e4e8" ] + }, + "id" : "urn:uuid:04d0fa90-2a5a-4e5a-af3e-f663a91db9b1" + } ] + }, { + "catenaXId" : "urn:uuid:322bb7e9-e9de-4de6-8e4c-22446dfc5e1b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:322bb7e9-e9de-4de6-8e4c-22446dfc5e1b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-801974683313260982283411", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:322bb7e9-e9de-4de6-8e4c-22446dfc5e1b", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-801974683313260982283411", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:322bb7e9-e9de-4de6-8e4c-22446dfc5e1b" ] + }, + "id" : "urn:uuid:ebcfb360-b6b1-4294-b55a-da210a9526c1" + } ] + }, { + "catenaXId" : "urn:uuid:2d74bb30-3a72-4561-ab19-0446606774b8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2d74bb30-3a72-4561-ab19-0446606774b8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-355434822944827999754544", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2d74bb30-3a72-4561-ab19-0446606774b8", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-355434822944827999754544", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2d74bb30-3a72-4561-ab19-0446606774b8" ] + }, + "id" : "urn:uuid:f330a33a-ee14-4495-9123-b4cfd8cb2378" + } ] + }, { + "catenaXId" : "urn:uuid:abeba0ea-a269-4c12-bf65-c4f631981be4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:abeba0ea-a269-4c12-bf65-c4f631981be4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-270722802623480705337919", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:abeba0ea-a269-4c12-bf65-c4f631981be4", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-270722802623480705337919", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:abeba0ea-a269-4c12-bf65-c4f631981be4" ] + }, + "id" : "urn:uuid:7afa81c4-2fa9-4265-b9e7-db23608d7102" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", + "childItems" : [ { + "catenaXId" : "urn:uuid:ceb13138-262c-48b3-8236-419ddbdf6b45", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1938c366-ff17-4665-ad2b-d14598b8c897", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-984843029630482680096485", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-984843029630482680096485", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-984843029630482680096485", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38" ] + }, + "id" : "urn:uuid:d37d0b98-ccf2-4244-851e-096bd96ebb9a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 4, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 30, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 65, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:ceb13138-262c-48b3-8236-419ddbdf6b45", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ceb13138-262c-48b3-8236-419ddbdf6b45" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "78083J4-28", + "key" : "manufacturerPartId" + }, { + "value" : "NO-386736440518478022150129", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ceb13138-262c-48b3-8236-419ddbdf6b45", + "partTypeInformation" : { + "manufacturerPartId" : "78083J4-28", + "customerPartId" : "78083J4-28", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 35, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 58, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ae57614-dc3b-4b6e-b1a2-24601849dffd", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "69865Z6-86", + "key" : "manufacturerPartId" + }, { + "value" : "NO-235182879908951533016841", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09", + "partTypeInformation" : { + "manufacturerPartId" : "69865Z6-86", + "customerPartId" : "69865Z6-86", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-235182879908951533016841", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "69865Z6-86", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09" ] + }, + "id" : "urn:uuid:65bb02ad-18fc-449e-bb6a-8f312d925e54" + } ] + }, { + "catenaXId" : "urn:uuid:6ae57614-dc3b-4b6e-b1a2-24601849dffd", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6ae57614-dc3b-4b6e-b1a2-24601849dffd" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "59084G4-26", + "key" : "manufacturerPartId" + }, { + "value" : "NO-732003755024221580516946", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ae57614-dc3b-4b6e-b1a2-24601849dffd", + "partTypeInformation" : { + "manufacturerPartId" : "59084G4-26", + "customerPartId" : "59084G4-26", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 64, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 80, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1938c366-ff17-4665-ad2b-d14598b8c897", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:1938c366-ff17-4665-ad2b-d14598b8c897", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1938c366-ff17-4665-ad2b-d14598b8c897" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "89197H1-19", + "key" : "manufacturerPartId" + }, { + "value" : "NO-995488198159077041217340", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1938c366-ff17-4665-ad2b-d14598b8c897", + "partTypeInformation" : { + "manufacturerPartId" : "89197H1-19", + "customerPartId" : "89197H1-19", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71", + "childItems" : [ { + "catenaXId" : "urn:uuid:263e8d09-299d-48cd-9a83-ef3241fe8db3", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:86c6300e-f657-465b-a4fc-e4d91329edaf", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "93540B9-58", + "key" : "manufacturerPartId" + }, { + "value" : "NO-206387903194175037399869", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71", + "partTypeInformation" : { + "manufacturerPartId" : "93540B9-58", + "customerPartId" : "93540B9-58", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-206387903194175037399869", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "93540B9-58", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71" ] + }, + "id" : "urn:uuid:40456ddb-1466-48e9-b625-f047983c3601" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 5, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:263e8d09-299d-48cd-9a83-ef3241fe8db3", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:263e8d09-299d-48cd-9a83-ef3241fe8db3" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "12164T4-80", + "key" : "manufacturerPartId" + }, { + "value" : "NO-133592413325003374327425", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:263e8d09-299d-48cd-9a83-ef3241fe8db3", + "partTypeInformation" : { + "manufacturerPartId" : "12164T4-80", + "customerPartId" : "12164T4-80", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 55, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 69, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc", + "childItems" : [ { + "catenaXId" : "urn:uuid:da6d57e8-9362-4ede-b7bb-ee240fcc20f6", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "61377D6-99", + "key" : "manufacturerPartId" + }, { + "value" : "NO-270845295638539976954444", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc", + "partTypeInformation" : { + "manufacturerPartId" : "61377D6-99", + "customerPartId" : "61377D6-99", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-270845295638539976954444", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61377D6-99", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc" ] + }, + "id" : "urn:uuid:8645edd7-e25a-4721-b108-5ae1da5061d8" + } ] + }, { + "catenaXId" : "urn:uuid:da6d57e8-9362-4ede-b7bb-ee240fcc20f6", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:da6d57e8-9362-4ede-b7bb-ee240fcc20f6" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "98945T9-22", + "key" : "manufacturerPartId" + }, { + "value" : "NO-438952907396768909424999", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:da6d57e8-9362-4ede-b7bb-ee240fcc20f6", + "partTypeInformation" : { + "manufacturerPartId" : "98945T9-22", + "customerPartId" : "98945T9-22", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 53, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 38, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:86c6300e-f657-465b-a4fc-e4d91329edaf", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:86c6300e-f657-465b-a4fc-e4d91329edaf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "19473X6-15", + "key" : "manufacturerPartId" + }, { + "value" : "NO-282129903671803610976067", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:86c6300e-f657-465b-a4fc-e4d91329edaf", + "partTypeInformation" : { + "manufacturerPartId" : "19473X6-15", + "customerPartId" : "19473X6-15", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-282129903671803610976067", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19473X6-15", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:86c6300e-f657-465b-a4fc-e4d91329edaf" ] + }, + "id" : "urn:uuid:a7f0e2d0-e8e0-4eaa-8278-71eba2c37856" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 19, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 14, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "engine" : { + "size" : 2998, + "power" : 154 + }, + "emptyWeight" : 1.79, + "fuel" : "petrol", + "vehicleModel" : "Vehicle Combustion", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + }, { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "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 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "childItems" : [ { + "catenaXId" : "urn:uuid:a185bbfd-f114-4b8c-a021-ecc820ffbc8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:05fd5901-137d-4dcf-a66c-9f15a04dad70", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c0b8628f-a67b-4437-ba96-e2db80311f8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c4699691-12e3-4567-8990-d57c53872f29", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:61b24ad9-5b6a-4bf2-ab7a-92dce0c301e5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2a7eab03-5b5b-445e-8504-e777407def9e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bdcdae70-3d8e-4f20-a669-f9ff02057ee4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:88a2b1a1-f1ef-47c7-a63b-0353313f827c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:84cc2b87-8fd2-4d55-8a98-33f4cfe762b9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1ec0d9f1-996b-4fa7-a4b2-0741d61d2ae9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1aa99119-8beb-4bb5-83c4-23e59b0b5a92", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:54917f36-30a9-425b-b7ef-325d1e67dfb2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:abc3be81-0a25-4581-a054-5327d4744aac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e9f28253-f353-4672-9408-9c5bc2d376a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9ac53652-34b3-40fa-be9e-0e2b6c04e820", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9aac9db5-72d4-4fe9-8663-335b72d37720", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d4d3cca1-f378-457d-9d18-4e45641c071a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c6c3058d-e297-4988-8196-7b8b8bb086fe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d47e0a83-384b-4121-8131-13fe4f9f4b43", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c6c5af39-bebf-426f-84c2-4fcefdaaf06a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c327bc16-cbc3-4338-a571-7d1583b935b8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ecd837d0-bbe3-4ace-a81b-0d62d3043615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:db97ef3a-c865-49fb-afed-4fb29d3134c8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9b520d70-3594-417b-84b1-8fcd6f3e172c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5fee25cf-5a93-4352-aed6-cd81c8d12a2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:115a987d-ed09-4107-a2b7-e41eebe5faa1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e9650b24-b4d0-4f74-be57-4bc9fa2fc45f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9fa379a5-69ea-4557-87a7-9dfa6dc51b33", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:38845ef1-36b1-4ae5-b8ce-29f3c007c175", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e825d9e7-c24d-4340-a565-b17f64c685f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "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" + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "BV-03", + "key" : "manufacturerPartId" + }, { + "value" : "OMAYRMPKYNBVLCOUL", + "key" : "partInstanceId" + }, { + "value" : "OMAYRMPKYNBVLCOUL", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2018-12-20T12:57:50.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "partTypeInformation" : { + "manufacturerPartId" : "BV-03", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMAYRMPKYNBVLCOUL", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "BV-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_combustion.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Combustion" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, + "id" : "urn:uuid:5dfd3099-fdbb-4e9e-ab0e-5d78522a587d" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 86, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 28, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 5, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 43, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 74, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 58, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 65, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 32, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 40, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 5, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a185bbfd-f114-4b8c-a021-ecc820ffbc8c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a185bbfd-f114-4b8c-a021-ecc820ffbc8c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-368188560957722998894718", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a185bbfd-f114-4b8c-a021-ecc820ffbc8c", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-368188560957722998894718", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a185bbfd-f114-4b8c-a021-ecc820ffbc8c" ] + }, + "id" : "urn:uuid:ddc762da-1c92-449f-962a-2c5a872176c2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:05fd5901-137d-4dcf-a66c-9f15a04dad70", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:05fd5901-137d-4dcf-a66c-9f15a04dad70" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-662728094637696505921349", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:05fd5901-137d-4dcf-a66c-9f15a04dad70", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-662728094637696505921349", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:05fd5901-137d-4dcf-a66c-9f15a04dad70" ] + }, + "id" : "urn:uuid:b6d1d8c8-b941-4578-a967-b442c5845fda" + } ] + }, { + "catenaXId" : "urn:uuid:c0b8628f-a67b-4437-ba96-e2db80311f8c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c0b8628f-a67b-4437-ba96-e2db80311f8c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-667820494624289705209861", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c0b8628f-a67b-4437-ba96-e2db80311f8c", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-667820494624289705209861", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c0b8628f-a67b-4437-ba96-e2db80311f8c" ] + }, + "id" : "urn:uuid:8040d0d0-16c1-4393-8eab-c05335c40520" + } ] + }, { + "catenaXId" : "urn:uuid:c4699691-12e3-4567-8990-d57c53872f29", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c4699691-12e3-4567-8990-d57c53872f29" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-114344584311617350087477", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c4699691-12e3-4567-8990-d57c53872f29", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-114344584311617350087477", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c4699691-12e3-4567-8990-d57c53872f29" ] + }, + "id" : "urn:uuid:cb61caf1-a413-4374-9502-c3c6f48b6468" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98", + "childItems" : [ { + "catenaXId" : "urn:uuid:6536c53a-2683-4e11-8875-83bd9baedfd5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-239622531552031699970287", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-239622531552031699970287", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98" ] + }, + "id" : "urn:uuid:6d753d2f-335b-4b70-a8a5-c4b7d56dc6f8" + } ] + }, { + "catenaXId" : "urn:uuid:6536c53a-2683-4e11-8875-83bd9baedfd5", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6536c53a-2683-4e11-8875-83bd9baedfd5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-771295870472297705915519", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6536c53a-2683-4e11-8875-83bd9baedfd5", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-771295870472297705915519", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6536c53a-2683-4e11-8875-83bd9baedfd5" ] + }, + "id" : "urn:uuid:3d6c1baf-5144-46f3-8989-7b93cf0c0d9d" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3", + "childItems" : [ { + "catenaXId" : "urn:uuid:a67280e2-c1fc-4e44-a859-5ea90e499eb5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-728083572997885168240961", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-728083572997885168240961", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3" ] + }, + "id" : "urn:uuid:ee992ecd-2316-4a77-a5c9-1027904c993a" + } ] + }, { + "catenaXId" : "urn:uuid:a67280e2-c1fc-4e44-a859-5ea90e499eb5", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a67280e2-c1fc-4e44-a859-5ea90e499eb5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-165709587626255533772286", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a67280e2-c1fc-4e44-a859-5ea90e499eb5", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-165709587626255533772286", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a67280e2-c1fc-4e44-a859-5ea90e499eb5" ] + }, + "id" : "urn:uuid:8fb500ad-a97b-4bf4-bda2-63a67bdfb06a" + } ] + }, { + "catenaXId" : "urn:uuid:61b24ad9-5b6a-4bf2-ab7a-92dce0c301e5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:61b24ad9-5b6a-4bf2-ab7a-92dce0c301e5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-956393582832744339755407", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:61b24ad9-5b6a-4bf2-ab7a-92dce0c301e5", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-956393582832744339755407", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:61b24ad9-5b6a-4bf2-ab7a-92dce0c301e5" ] + }, + "id" : "urn:uuid:b724b372-320f-4645-bf39-0a9ad2d31102" + } ] + }, { + "catenaXId" : "urn:uuid:2a7eab03-5b5b-445e-8504-e777407def9e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2a7eab03-5b5b-445e-8504-e777407def9e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-928925533956546854650505", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2a7eab03-5b5b-445e-8504-e777407def9e", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-928925533956546854650505", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2a7eab03-5b5b-445e-8504-e777407def9e" ] + }, + "id" : "urn:uuid:30a3fcee-e709-445a-bfe3-d9e62f96ba0b" + } ] + }, { + "catenaXId" : "urn:uuid:bdcdae70-3d8e-4f20-a669-f9ff02057ee4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bdcdae70-3d8e-4f20-a669-f9ff02057ee4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-713166517481062808353312", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bdcdae70-3d8e-4f20-a669-f9ff02057ee4", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-713166517481062808353312", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bdcdae70-3d8e-4f20-a669-f9ff02057ee4" ] + }, + "id" : "urn:uuid:482916f3-30aa-4b01-bd6d-7ef7115a47ba" + } ] + }, { + "catenaXId" : "urn:uuid:88a2b1a1-f1ef-47c7-a63b-0353313f827c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:88a2b1a1-f1ef-47c7-a63b-0353313f827c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-504929947416532717416315", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:88a2b1a1-f1ef-47c7-a63b-0353313f827c", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-504929947416532717416315", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:88a2b1a1-f1ef-47c7-a63b-0353313f827c" ] + }, + "id" : "urn:uuid:ea0f7a7c-0871-4d06-bcf9-2690c2da542a" + } ] + }, { + "catenaXId" : "urn:uuid:84cc2b87-8fd2-4d55-8a98-33f4cfe762b9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:84cc2b87-8fd2-4d55-8a98-33f4cfe762b9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-111163636278674046013071", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:84cc2b87-8fd2-4d55-8a98-33f4cfe762b9", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-111163636278674046013071", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:84cc2b87-8fd2-4d55-8a98-33f4cfe762b9" ] + }, + "id" : "urn:uuid:a3e542f3-be48-4ae0-baac-8c8dd2ecd547" + } ] + }, { + "catenaXId" : "urn:uuid:1ec0d9f1-996b-4fa7-a4b2-0741d61d2ae9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1ec0d9f1-996b-4fa7-a4b2-0741d61d2ae9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-640978326872043041505330", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1ec0d9f1-996b-4fa7-a4b2-0741d61d2ae9", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-640978326872043041505330", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1ec0d9f1-996b-4fa7-a4b2-0741d61d2ae9" ] + }, + "id" : "urn:uuid:c492d220-f66d-4369-a892-a030fb7a7eec" + } ] + }, { + "catenaXId" : "urn:uuid:1aa99119-8beb-4bb5-83c4-23e59b0b5a92", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1aa99119-8beb-4bb5-83c4-23e59b0b5a92" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-072787331267828836058636", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1aa99119-8beb-4bb5-83c4-23e59b0b5a92", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-072787331267828836058636", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1aa99119-8beb-4bb5-83c4-23e59b0b5a92" ] + }, + "id" : "urn:uuid:f507ed09-c40f-4e72-9660-f066a7a971a4" + } ] + }, { + "catenaXId" : "urn:uuid:54917f36-30a9-425b-b7ef-325d1e67dfb2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:54917f36-30a9-425b-b7ef-325d1e67dfb2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-731809257212160901294106", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:54917f36-30a9-425b-b7ef-325d1e67dfb2", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-731809257212160901294106", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:54917f36-30a9-425b-b7ef-325d1e67dfb2" ] + }, + "id" : "urn:uuid:f8122afd-a036-4273-a371-0267d74af59d" + } ] + }, { + "catenaXId" : "urn:uuid:abc3be81-0a25-4581-a054-5327d4744aac", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:abc3be81-0a25-4581-a054-5327d4744aac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-631376602391565145349089", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:abc3be81-0a25-4581-a054-5327d4744aac", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-631376602391565145349089", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:abc3be81-0a25-4581-a054-5327d4744aac" ] + }, + "id" : "urn:uuid:514b95c1-3517-47bd-921a-213e98b65496" + } ] + }, { + "catenaXId" : "urn:uuid:e9f28253-f353-4672-9408-9c5bc2d376a9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e9f28253-f353-4672-9408-9c5bc2d376a9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-710661122857532115906182", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e9f28253-f353-4672-9408-9c5bc2d376a9", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-710661122857532115906182", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e9f28253-f353-4672-9408-9c5bc2d376a9" ] + }, + "id" : "urn:uuid:f77aeddf-a10d-4f4b-8de2-ef096949dd24" + } ] + }, { + "catenaXId" : "urn:uuid:9ac53652-34b3-40fa-be9e-0e2b6c04e820", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9ac53652-34b3-40fa-be9e-0e2b6c04e820" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-533730116471255623565436", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9ac53652-34b3-40fa-be9e-0e2b6c04e820", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-533730116471255623565436", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9ac53652-34b3-40fa-be9e-0e2b6c04e820" ] + }, + "id" : "urn:uuid:88163d10-bfb6-4d91-ab3e-7f43f54f9b3a" + } ] + }, { + "catenaXId" : "urn:uuid:9aac9db5-72d4-4fe9-8663-335b72d37720", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9aac9db5-72d4-4fe9-8663-335b72d37720" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-650101570567457013776457", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9aac9db5-72d4-4fe9-8663-335b72d37720", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-650101570567457013776457", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9aac9db5-72d4-4fe9-8663-335b72d37720" ] + }, + "id" : "urn:uuid:d952fd84-edc6-45b0-b512-5052fae797dc" + } ] + }, { + "catenaXId" : "urn:uuid:d4d3cca1-f378-457d-9d18-4e45641c071a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d4d3cca1-f378-457d-9d18-4e45641c071a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-153887744178869607408028", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d4d3cca1-f378-457d-9d18-4e45641c071a", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-153887744178869607408028", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d4d3cca1-f378-457d-9d18-4e45641c071a" ] + }, + "id" : "urn:uuid:241d63da-3f13-4c87-98ec-e700aa5ed7e3" + } ] + }, { + "catenaXId" : "urn:uuid:c6c3058d-e297-4988-8196-7b8b8bb086fe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c6c3058d-e297-4988-8196-7b8b8bb086fe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-367459081101676996889724", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c6c3058d-e297-4988-8196-7b8b8bb086fe", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-367459081101676996889724", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c6c3058d-e297-4988-8196-7b8b8bb086fe" ] + }, + "id" : "urn:uuid:233047c0-9fe4-4e2f-9661-7ad2efc83abe" + } ] + }, { + "catenaXId" : "urn:uuid:d47e0a83-384b-4121-8131-13fe4f9f4b43", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d47e0a83-384b-4121-8131-13fe4f9f4b43" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-367718217626552585314634", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d47e0a83-384b-4121-8131-13fe4f9f4b43", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-367718217626552585314634", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d47e0a83-384b-4121-8131-13fe4f9f4b43" ] + }, + "id" : "urn:uuid:c0f9c7ec-0b6a-4a75-b226-ab9b83f6b8d1" + } ] + }, { + "catenaXId" : "urn:uuid:c6c5af39-bebf-426f-84c2-4fcefdaaf06a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c6c5af39-bebf-426f-84c2-4fcefdaaf06a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-807801775502088271740802", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c6c5af39-bebf-426f-84c2-4fcefdaaf06a", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-807801775502088271740802", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c6c5af39-bebf-426f-84c2-4fcefdaaf06a" ] + }, + "id" : "urn:uuid:0141c947-9b63-40af-9a13-7dd28d137c9d" + } ] + }, { + "catenaXId" : "urn:uuid:c327bc16-cbc3-4338-a571-7d1583b935b8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c327bc16-cbc3-4338-a571-7d1583b935b8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-268350205468315316920581", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c327bc16-cbc3-4338-a571-7d1583b935b8", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-268350205468315316920581", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c327bc16-cbc3-4338-a571-7d1583b935b8" ] + }, + "id" : "urn:uuid:b00977e6-f625-4fcd-a18b-918d245d9b4c" + } ] + }, { + "catenaXId" : "urn:uuid:ecd837d0-bbe3-4ace-a81b-0d62d3043615", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ecd837d0-bbe3-4ace-a81b-0d62d3043615" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-147666900561343821687797", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ecd837d0-bbe3-4ace-a81b-0d62d3043615", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-147666900561343821687797", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ecd837d0-bbe3-4ace-a81b-0d62d3043615" ] + }, + "id" : "urn:uuid:3a4e0f73-48ca-4ff4-a21b-43bba5b205f8" + } ] + }, { + "catenaXId" : "urn:uuid:db97ef3a-c865-49fb-afed-4fb29d3134c8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:db97ef3a-c865-49fb-afed-4fb29d3134c8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-579424605987683598547663", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:db97ef3a-c865-49fb-afed-4fb29d3134c8", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-579424605987683598547663", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:db97ef3a-c865-49fb-afed-4fb29d3134c8" ] + }, + "id" : "urn:uuid:a40b0f45-27d0-4d8b-9ad2-80cb483de7d6" + } ] + }, { + "catenaXId" : "urn:uuid:9b520d70-3594-417b-84b1-8fcd6f3e172c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9b520d70-3594-417b-84b1-8fcd6f3e172c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-112276593656557518361019", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9b520d70-3594-417b-84b1-8fcd6f3e172c", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-112276593656557518361019", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9b520d70-3594-417b-84b1-8fcd6f3e172c" ] + }, + "id" : "urn:uuid:d74184ca-b8d5-4a40-9d3d-f690fb31108f" + } ] + }, { + "catenaXId" : "urn:uuid:5fee25cf-5a93-4352-aed6-cd81c8d12a2f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5fee25cf-5a93-4352-aed6-cd81c8d12a2f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-632382564460108299757342", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5fee25cf-5a93-4352-aed6-cd81c8d12a2f", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-632382564460108299757342", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5fee25cf-5a93-4352-aed6-cd81c8d12a2f" ] + }, + "id" : "urn:uuid:462930b4-49fd-418f-8b95-56322e4da09a" + } ] + }, { + "catenaXId" : "urn:uuid:115a987d-ed09-4107-a2b7-e41eebe5faa1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:115a987d-ed09-4107-a2b7-e41eebe5faa1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-631304073956419248480289", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:115a987d-ed09-4107-a2b7-e41eebe5faa1", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-631304073956419248480289", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:115a987d-ed09-4107-a2b7-e41eebe5faa1" ] + }, + "id" : "urn:uuid:e19b59c3-f6ce-4a55-a339-60c8fdc29928" + } ] + }, { + "catenaXId" : "urn:uuid:e9650b24-b4d0-4f74-be57-4bc9fa2fc45f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e9650b24-b4d0-4f74-be57-4bc9fa2fc45f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-298036754031312027254068", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e9650b24-b4d0-4f74-be57-4bc9fa2fc45f", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-298036754031312027254068", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e9650b24-b4d0-4f74-be57-4bc9fa2fc45f" ] + }, + "id" : "urn:uuid:5c381f20-de56-437f-8b56-39ddfcbba53f" + } ] + }, { + "catenaXId" : "urn:uuid:9fa379a5-69ea-4557-87a7-9dfa6dc51b33", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9fa379a5-69ea-4557-87a7-9dfa6dc51b33" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-284519318703475677605198", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9fa379a5-69ea-4557-87a7-9dfa6dc51b33", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-284519318703475677605198", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9fa379a5-69ea-4557-87a7-9dfa6dc51b33" ] + }, + "id" : "urn:uuid:9451023b-c301-41d1-9590-8e1f2a615392" + } ] + }, { + "catenaXId" : "urn:uuid:38845ef1-36b1-4ae5-b8ce-29f3c007c175", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:38845ef1-36b1-4ae5-b8ce-29f3c007c175" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-310374614154435913346622", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:38845ef1-36b1-4ae5-b8ce-29f3c007c175", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-310374614154435913346622", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:38845ef1-36b1-4ae5-b8ce-29f3c007c175" ] + }, + "id" : "urn:uuid:4d5272f0-9883-450e-afbc-fba155032645" + } ] + }, { + "catenaXId" : "urn:uuid:e825d9e7-c24d-4340-a565-b17f64c685f4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e825d9e7-c24d-4340-a565-b17f64c685f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-601073038271443726291296", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e825d9e7-c24d-4340-a565-b17f64c685f4", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-601073038271443726291296", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e825d9e7-c24d-4340-a565-b17f64c685f4" ] + }, + "id" : "urn:uuid:73f1835d-c617-44b0-bc59-3c70da700e4e" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", + "childItems" : [ { + "catenaXId" : "urn:uuid:e8fe6f59-5c46-4d17-8fdf-a2977cf1669b", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:21624bd8-af23-4041-abe6-cf9b2abfcf44", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-289605921580702188290559", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-289605921580702188290559", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-289605921580702188290559", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16" ] + }, + "id" : "urn:uuid:8a37029f-bcee-4763-a68a-4b3c3905e347" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 24, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 75, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 60, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e8fe6f59-5c46-4d17-8fdf-a2977cf1669b", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e8fe6f59-5c46-4d17-8fdf-a2977cf1669b" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "10327K4-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-124482998541344878218629", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e8fe6f59-5c46-4d17-8fdf-a2977cf1669b", + "partTypeInformation" : { + "manufacturerPartId" : "10327K4-74", + "customerPartId" : "10327K4-74", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 56, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 65, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76", + "childItems" : [ { + "catenaXId" : "urn:uuid:c00003af-58fd-4b7c-a8e8-48353488db45", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "03811F1-55", + "key" : "manufacturerPartId" + }, { + "value" : "NO-669563240255661285667477", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76", + "partTypeInformation" : { + "manufacturerPartId" : "03811F1-55", + "customerPartId" : "03811F1-55", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-669563240255661285667477", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "03811F1-55", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76" ] + }, + "id" : "urn:uuid:27ecd4e1-94d1-4cf9-a4ee-1db4af879059" + } ] + }, { + "catenaXId" : "urn:uuid:c00003af-58fd-4b7c-a8e8-48353488db45", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c00003af-58fd-4b7c-a8e8-48353488db45" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "94314T7-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-105146529666547882996907", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c00003af-58fd-4b7c-a8e8-48353488db45", + "partTypeInformation" : { + "manufacturerPartId" : "94314T7-49", + "customerPartId" : "94314T7-49", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 17, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 5, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:21624bd8-af23-4041-abe6-cf9b2abfcf44", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:21624bd8-af23-4041-abe6-cf9b2abfcf44", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:21624bd8-af23-4041-abe6-cf9b2abfcf44" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "16453J9-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-720472222504577124488343", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:21624bd8-af23-4041-abe6-cf9b2abfcf44", + "partTypeInformation" : { + "manufacturerPartId" : "16453J9-23", + "customerPartId" : "16453J9-23", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc", + "childItems" : [ { + "catenaXId" : "urn:uuid:aedff1a3-5ba3-44a1-8c18-8ab96953c88a", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:21331807-8e10-4cc9-bb9a-a97605977c25", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "33187T8-89", + "key" : "manufacturerPartId" + }, { + "value" : "NO-177751567530610881285330", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc", + "partTypeInformation" : { + "manufacturerPartId" : "33187T8-89", + "customerPartId" : "33187T8-89", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-177751567530610881285330", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "33187T8-89", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc" ] + }, + "id" : "urn:uuid:2f6675c0-1c3f-4eff-9587-efb1fa19bed9" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 29, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:aedff1a3-5ba3-44a1-8c18-8ab96953c88a", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aedff1a3-5ba3-44a1-8c18-8ab96953c88a" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "01534Q3-12", + "key" : "manufacturerPartId" + }, { + "value" : "NO-581361998437755799167586", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aedff1a3-5ba3-44a1-8c18-8ab96953c88a", + "partTypeInformation" : { + "manufacturerPartId" : "01534Q3-12", + "customerPartId" : "01534Q3-12", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 14, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 60, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250", + "childItems" : [ { + "catenaXId" : "urn:uuid:7ecebbd1-9cec-4913-94f3-adc7641b669c", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "17236V1-26", + "key" : "manufacturerPartId" + }, { + "value" : "NO-714199896412927080479664", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250", + "partTypeInformation" : { + "manufacturerPartId" : "17236V1-26", + "customerPartId" : "17236V1-26", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-714199896412927080479664", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "17236V1-26", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250" ] + }, + "id" : "urn:uuid:16e3b555-db28-4e54-9cbb-c10fe5336349" + } ] + }, { + "catenaXId" : "urn:uuid:7ecebbd1-9cec-4913-94f3-adc7641b669c", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7ecebbd1-9cec-4913-94f3-adc7641b669c" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "20402M3-02", + "key" : "manufacturerPartId" + }, { + "value" : "NO-027954710622256487780300", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7ecebbd1-9cec-4913-94f3-adc7641b669c", + "partTypeInformation" : { + "manufacturerPartId" : "20402M3-02", + "customerPartId" : "20402M3-02", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 29, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 16, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:21331807-8e10-4cc9-bb9a-a97605977c25", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:21331807-8e10-4cc9-bb9a-a97605977c25" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "11873G7-06", + "key" : "manufacturerPartId" + }, { + "value" : "NO-999854039035900436917783", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:21331807-8e10-4cc9-bb9a-a97605977c25", + "partTypeInformation" : { + "manufacturerPartId" : "11873G7-06", + "customerPartId" : "11873G7-06", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-999854039035900436917783", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "11873G7-06", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:21331807-8e10-4cc9-bb9a-a97605977c25" ] + }, + "id" : "urn:uuid:9c9e2f65-d631-4848-a455-340fc42b7532" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 7, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 41, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "electric", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "childItems" : [ { + "catenaXId" : "urn:uuid:c1971b88-b4fd-42e9-9f2f-1d4f87d90210", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:782d267e-e9d1-4871-9cf3-09f2396e4afc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b396bf83-b90a-4b96-8aaf-339e05fe32ab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:08e564be-6b51-4d79-b267-ffc0d8215f54", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e526c1ae-6ae7-4a45-a0ea-20c26d5f43c1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:085380b4-eefc-480f-b7c8-67a3487b64db", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2b988c9e-1a2c-441d-bcd9-127f36c3fa10", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b1514135-7aed-443f-aa42-3d824f31897c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0123ae3-6bc7-4650-926b-0aeb5ba8136e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4e894d81-3d2c-46d2-941b-8a3faf8efae2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ac153abb-4705-4f7c-9104-adebed1ea70d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:471786de-3b08-44a6-a67f-d0866768c5ca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:111c2947-9d09-4a63-b114-1aa365a5ee36", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d6f151e1-fc53-468c-9590-e87489d05076", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:da329e19-8217-4394-b1df-8956956c3e98", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0e210008-a479-48bd-9d0f-889471647aaf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5ae46e16-a7dc-4f76-ab17-04d26b48fa80", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e140ec3c-d7f1-4f46-adaf-cc97339e4f42", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a18c2536-8993-4c52-aca7-8c7a6629da03", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c9d6421e-d2dd-43ea-a9ac-72a9d6a25675", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:269be1da-57a1-4ea3-a53e-5f584d07606c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8b023fc8-a9fb-40c0-8fb1-79b3347a751f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:69df0386-051a-433d-a074-2848039ba421", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a63b01ca-a9a4-4ce5-9639-c848fc411146", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9640d81d-01f9-4a3d-94fb-3a0204693076", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7ddc3de7-c032-4b21-acd3-1eefc35d698c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ac11a67e-f7ab-4feb-9001-217b88fb744b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "IQ-04", + "key" : "manufacturerPartId" + }, { + "value" : "OMCWUMNTAACCJECZG", + "key" : "partInstanceId" + }, { + "value" : "OMCWUMNTAACCJECZG", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2016-06-18T07:22:22.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "partTypeInformation" : { + "manufacturerPartId" : "IQ-04", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCWUMNTAACCJECZG", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "IQ-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_fully_electric.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Fully Electric" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, + "id" : "urn:uuid:a7bccb9b-dc65-4f51-aabb-c891712e9929" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 22, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 53, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 72, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 80, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 45, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 26, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 20, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 86, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 44, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 20, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:c1971b88-b4fd-42e9-9f2f-1d4f87d90210", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c1971b88-b4fd-42e9-9f2f-1d4f87d90210" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-185293663424785810498607", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c1971b88-b4fd-42e9-9f2f-1d4f87d90210", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-185293663424785810498607", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c1971b88-b4fd-42e9-9f2f-1d4f87d90210" ] + }, + "id" : "urn:uuid:096ef506-561b-461e-b43b-5ce94ca51768" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514", + "childItems" : [ { + "catenaXId" : "urn:uuid:6c5bf952-e869-4377-8d9a-44c0b979c0ff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-363691662465302300751906", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-363691662465302300751906", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514" ] + }, + "id" : "urn:uuid:eae8a73e-8aa7-4b04-af04-b038ce13fb3d" + } ] + }, { + "catenaXId" : "urn:uuid:6c5bf952-e869-4377-8d9a-44c0b979c0ff", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6c5bf952-e869-4377-8d9a-44c0b979c0ff" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-825181601972380455844039", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6c5bf952-e869-4377-8d9a-44c0b979c0ff", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-825181601972380455844039", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6c5bf952-e869-4377-8d9a-44c0b979c0ff" ] + }, + "id" : "urn:uuid:934f4c79-5cfd-4594-8a6c-4674cc6efa72" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d", + "childItems" : [ { + "catenaXId" : "urn:uuid:ae2db4bd-97eb-4630-aaf2-9f94bc12ef78", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-679723593943801201462258", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-679723593943801201462258", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d" ] + }, + "id" : "urn:uuid:61e18682-ea8f-407b-a8f6-0f12cfb87354" + } ] + }, { + "catenaXId" : "urn:uuid:ae2db4bd-97eb-4630-aaf2-9f94bc12ef78", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ae2db4bd-97eb-4630-aaf2-9f94bc12ef78" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-888066368811038266889368", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ae2db4bd-97eb-4630-aaf2-9f94bc12ef78", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-888066368811038266889368", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ae2db4bd-97eb-4630-aaf2-9f94bc12ef78" ] + }, + "id" : "urn:uuid:f6f8067b-526c-4a14-ac5b-8d9143f79500" + } ] + }, { + "catenaXId" : "urn:uuid:782d267e-e9d1-4871-9cf3-09f2396e4afc", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:782d267e-e9d1-4871-9cf3-09f2396e4afc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-635695179904558158820154", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:782d267e-e9d1-4871-9cf3-09f2396e4afc", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-635695179904558158820154", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:782d267e-e9d1-4871-9cf3-09f2396e4afc" ] + }, + "id" : "urn:uuid:30b62427-ec17-4ec5-9a82-b69d2fe88f1d" + } ] + }, { + "catenaXId" : "urn:uuid:b396bf83-b90a-4b96-8aaf-339e05fe32ab", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b396bf83-b90a-4b96-8aaf-339e05fe32ab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-036089578440872183985556", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b396bf83-b90a-4b96-8aaf-339e05fe32ab", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-036089578440872183985556", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b396bf83-b90a-4b96-8aaf-339e05fe32ab" ] + }, + "id" : "urn:uuid:94dba2f8-4f4c-4b31-8ced-0b544834a415" + } ] + }, { + "catenaXId" : "urn:uuid:08e564be-6b51-4d79-b267-ffc0d8215f54", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:08e564be-6b51-4d79-b267-ffc0d8215f54" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-274977002052967209039629", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:08e564be-6b51-4d79-b267-ffc0d8215f54", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-274977002052967209039629", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:08e564be-6b51-4d79-b267-ffc0d8215f54" ] + }, + "id" : "urn:uuid:34e85b34-9863-443c-b20a-f473a0f00437" + } ] + }, { + "catenaXId" : "urn:uuid:e526c1ae-6ae7-4a45-a0ea-20c26d5f43c1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e526c1ae-6ae7-4a45-a0ea-20c26d5f43c1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-333384601218175774406423", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e526c1ae-6ae7-4a45-a0ea-20c26d5f43c1", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-333384601218175774406423", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e526c1ae-6ae7-4a45-a0ea-20c26d5f43c1" ] + }, + "id" : "urn:uuid:d058527c-176a-45b4-8e22-46147a510e21" + } ] + }, { + "catenaXId" : "urn:uuid:085380b4-eefc-480f-b7c8-67a3487b64db", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:085380b4-eefc-480f-b7c8-67a3487b64db" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-338180964271108204069143", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:085380b4-eefc-480f-b7c8-67a3487b64db", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-338180964271108204069143", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:085380b4-eefc-480f-b7c8-67a3487b64db" ] + }, + "id" : "urn:uuid:3a43a82a-80ae-4412-837d-4521c03e35d1" + } ] + }, { + "catenaXId" : "urn:uuid:2b988c9e-1a2c-441d-bcd9-127f36c3fa10", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2b988c9e-1a2c-441d-bcd9-127f36c3fa10" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-164420278612383341482473", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2b988c9e-1a2c-441d-bcd9-127f36c3fa10", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-164420278612383341482473", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2b988c9e-1a2c-441d-bcd9-127f36c3fa10" ] + }, + "id" : "urn:uuid:c2b096d3-8ba1-4f36-b1bd-9790c7db0136" + } ] + }, { + "catenaXId" : "urn:uuid:b1514135-7aed-443f-aa42-3d824f31897c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b1514135-7aed-443f-aa42-3d824f31897c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-878517378710348714366399", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b1514135-7aed-443f-aa42-3d824f31897c", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-878517378710348714366399", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b1514135-7aed-443f-aa42-3d824f31897c" ] + }, + "id" : "urn:uuid:97c41372-22a3-4aee-986a-e6f7c36c1515" + } ] + }, { + "catenaXId" : "urn:uuid:f0123ae3-6bc7-4650-926b-0aeb5ba8136e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0123ae3-6bc7-4650-926b-0aeb5ba8136e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-223071224701376634827268", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0123ae3-6bc7-4650-926b-0aeb5ba8136e", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-223071224701376634827268", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0123ae3-6bc7-4650-926b-0aeb5ba8136e" ] + }, + "id" : "urn:uuid:16865a04-2051-4aa0-9133-71813e725795" + } ] + }, { + "catenaXId" : "urn:uuid:4e894d81-3d2c-46d2-941b-8a3faf8efae2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4e894d81-3d2c-46d2-941b-8a3faf8efae2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-964143107475367366268220", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4e894d81-3d2c-46d2-941b-8a3faf8efae2", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-964143107475367366268220", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4e894d81-3d2c-46d2-941b-8a3faf8efae2" ] + }, + "id" : "urn:uuid:7f81f67d-f553-469f-9b39-85d221050623" + } ] + }, { + "catenaXId" : "urn:uuid:ac153abb-4705-4f7c-9104-adebed1ea70d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ac153abb-4705-4f7c-9104-adebed1ea70d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-697763393537568371187527", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ac153abb-4705-4f7c-9104-adebed1ea70d", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-697763393537568371187527", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ac153abb-4705-4f7c-9104-adebed1ea70d" ] + }, + "id" : "urn:uuid:eb49f31a-e1de-4e5d-b8f7-266e9b00030b" + } ] + }, { + "catenaXId" : "urn:uuid:471786de-3b08-44a6-a67f-d0866768c5ca", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:471786de-3b08-44a6-a67f-d0866768c5ca" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-497626940517616498967867", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:471786de-3b08-44a6-a67f-d0866768c5ca", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-497626940517616498967867", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:471786de-3b08-44a6-a67f-d0866768c5ca" ] + }, + "id" : "urn:uuid:c963acde-c2a0-4f66-b78b-10e2e21ab76c" + } ] + }, { + "catenaXId" : "urn:uuid:111c2947-9d09-4a63-b114-1aa365a5ee36", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:111c2947-9d09-4a63-b114-1aa365a5ee36" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-248758579802472606865436", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:111c2947-9d09-4a63-b114-1aa365a5ee36", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-248758579802472606865436", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:111c2947-9d09-4a63-b114-1aa365a5ee36" ] + }, + "id" : "urn:uuid:30264367-eeb9-47a8-84d7-96458683d399" + } ] + }, { + "catenaXId" : "urn:uuid:d6f151e1-fc53-468c-9590-e87489d05076", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d6f151e1-fc53-468c-9590-e87489d05076" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-922131417014379546426603", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d6f151e1-fc53-468c-9590-e87489d05076", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-922131417014379546426603", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d6f151e1-fc53-468c-9590-e87489d05076" ] + }, + "id" : "urn:uuid:c2e6d022-2c23-4f75-b257-2363a2bd243e" + } ] + }, { + "catenaXId" : "urn:uuid:da329e19-8217-4394-b1df-8956956c3e98", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:da329e19-8217-4394-b1df-8956956c3e98" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-493039852720700649551312", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:da329e19-8217-4394-b1df-8956956c3e98", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-493039852720700649551312", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:da329e19-8217-4394-b1df-8956956c3e98" ] + }, + "id" : "urn:uuid:708efa62-165e-477a-b61f-05a6c19c8677" + } ] + }, { + "catenaXId" : "urn:uuid:0e210008-a479-48bd-9d0f-889471647aaf", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0e210008-a479-48bd-9d0f-889471647aaf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-139887557391623373433362", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0e210008-a479-48bd-9d0f-889471647aaf", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-139887557391623373433362", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0e210008-a479-48bd-9d0f-889471647aaf" ] + }, + "id" : "urn:uuid:ea70017d-af44-45d6-8542-3e3d4b4e5939" + } ] + }, { + "catenaXId" : "urn:uuid:5ae46e16-a7dc-4f76-ab17-04d26b48fa80", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5ae46e16-a7dc-4f76-ab17-04d26b48fa80" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-434880563641728470148148", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5ae46e16-a7dc-4f76-ab17-04d26b48fa80", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-434880563641728470148148", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5ae46e16-a7dc-4f76-ab17-04d26b48fa80" ] + }, + "id" : "urn:uuid:ff3a26f6-f223-417f-b1cb-3f4709333868" + } ] + }, { + "catenaXId" : "urn:uuid:e140ec3c-d7f1-4f46-adaf-cc97339e4f42", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e140ec3c-d7f1-4f46-adaf-cc97339e4f42" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-679510048298189810767087", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e140ec3c-d7f1-4f46-adaf-cc97339e4f42", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-679510048298189810767087", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e140ec3c-d7f1-4f46-adaf-cc97339e4f42" ] + }, + "id" : "urn:uuid:70c4a148-5c85-4d7a-977b-55c68856aed8" + } ] + }, { + "catenaXId" : "urn:uuid:a18c2536-8993-4c52-aca7-8c7a6629da03", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a18c2536-8993-4c52-aca7-8c7a6629da03" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-120998102361745580030266", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a18c2536-8993-4c52-aca7-8c7a6629da03", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-120998102361745580030266", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a18c2536-8993-4c52-aca7-8c7a6629da03" ] + }, + "id" : "urn:uuid:9576ac7d-f86a-45b0-af65-9a87b8a96bcc" + } ] + }, { + "catenaXId" : "urn:uuid:c9d6421e-d2dd-43ea-a9ac-72a9d6a25675", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c9d6421e-d2dd-43ea-a9ac-72a9d6a25675" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-153131544590584691975314", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c9d6421e-d2dd-43ea-a9ac-72a9d6a25675", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-153131544590584691975314", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c9d6421e-d2dd-43ea-a9ac-72a9d6a25675" ] + }, + "id" : "urn:uuid:110d4c39-559b-4acd-b49a-83af10ff0e01" + } ] + }, { + "catenaXId" : "urn:uuid:269be1da-57a1-4ea3-a53e-5f584d07606c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:269be1da-57a1-4ea3-a53e-5f584d07606c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-528930943077415027793504", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:269be1da-57a1-4ea3-a53e-5f584d07606c", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-528930943077415027793504", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:269be1da-57a1-4ea3-a53e-5f584d07606c" ] + }, + "id" : "urn:uuid:4702a5c6-b60e-491a-9881-57cc04e393b8" + } ] + }, { + "catenaXId" : "urn:uuid:8b023fc8-a9fb-40c0-8fb1-79b3347a751f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8b023fc8-a9fb-40c0-8fb1-79b3347a751f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-555004909976520364402985", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8b023fc8-a9fb-40c0-8fb1-79b3347a751f", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-555004909976520364402985", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8b023fc8-a9fb-40c0-8fb1-79b3347a751f" ] + }, + "id" : "urn:uuid:c6d166b0-32a0-4d22-be27-62936498ea5f" + } ] + }, { + "catenaXId" : "urn:uuid:69df0386-051a-433d-a074-2848039ba421", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:69df0386-051a-433d-a074-2848039ba421" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-551473050668075926283919", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:69df0386-051a-433d-a074-2848039ba421", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-551473050668075926283919", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:69df0386-051a-433d-a074-2848039ba421" ] + }, + "id" : "urn:uuid:603d424e-a79e-4710-b676-d01aa73bceda" + } ] + }, { + "catenaXId" : "urn:uuid:a63b01ca-a9a4-4ce5-9639-c848fc411146", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a63b01ca-a9a4-4ce5-9639-c848fc411146" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-167815846443592681215860", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a63b01ca-a9a4-4ce5-9639-c848fc411146", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-167815846443592681215860", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a63b01ca-a9a4-4ce5-9639-c848fc411146" ] + }, + "id" : "urn:uuid:6d40af9e-77be-42e6-a19d-8b6b3ed85f7d" + } ] + }, { + "catenaXId" : "urn:uuid:9640d81d-01f9-4a3d-94fb-3a0204693076", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9640d81d-01f9-4a3d-94fb-3a0204693076" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-139831678889137601968998", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9640d81d-01f9-4a3d-94fb-3a0204693076", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-139831678889137601968998", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9640d81d-01f9-4a3d-94fb-3a0204693076" ] + }, + "id" : "urn:uuid:750738b7-8765-43f8-99a8-539df7497899" + } ] + }, { + "catenaXId" : "urn:uuid:7ddc3de7-c032-4b21-acd3-1eefc35d698c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7ddc3de7-c032-4b21-acd3-1eefc35d698c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-994646807574100746667051", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7ddc3de7-c032-4b21-acd3-1eefc35d698c", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-994646807574100746667051", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7ddc3de7-c032-4b21-acd3-1eefc35d698c" ] + }, + "id" : "urn:uuid:5957e5bb-c60d-4539-b3fe-7828296536fb" + } ] + }, { + "catenaXId" : "urn:uuid:ac11a67e-f7ab-4feb-9001-217b88fb744b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ac11a67e-f7ab-4feb-9001-217b88fb744b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-767818019085172619201790", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ac11a67e-f7ab-4feb-9001-217b88fb744b", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-767818019085172619201790", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ac11a67e-f7ab-4feb-9001-217b88fb744b" ] + }, + "id" : "urn:uuid:045ea384-45c8-4254-ac75-e00df8353dcc" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", + "childItems" : [ { + "catenaXId" : "urn:uuid:0fd22046-c195-496e-8a49-e991e9f698bc", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2b13a02a-bbe8-4c10-913e-5d398b959655", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-339284476940070078899979", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-339284476940070078899979", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-339284476940070078899979", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695" ] + }, + "id" : "urn:uuid:4de9f3ff-38cc-45e1-8985-1f3c4f771e17" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 88, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 82, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 39, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:0fd22046-c195-496e-8a49-e991e9f698bc", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0fd22046-c195-496e-8a49-e991e9f698bc" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "09190W4-85", + "key" : "manufacturerPartId" + }, { + "value" : "NO-216197689073920010717826", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0fd22046-c195-496e-8a49-e991e9f698bc", + "partTypeInformation" : { + "manufacturerPartId" : "09190W4-85", + "customerPartId" : "09190W4-85", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 0, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 53, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e", + "childItems" : [ { + "catenaXId" : "urn:uuid:2942084b-8a2a-4354-b5db-c91546105a01", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "84268R4-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-548276502263255729080703", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e", + "partTypeInformation" : { + "manufacturerPartId" : "84268R4-37", + "customerPartId" : "84268R4-37", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-548276502263255729080703", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "84268R4-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e" ] + }, + "id" : "urn:uuid:a5a361a3-f5ad-478a-8169-213520e2d760" + } ] + }, { + "catenaXId" : "urn:uuid:2942084b-8a2a-4354-b5db-c91546105a01", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2942084b-8a2a-4354-b5db-c91546105a01" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "67887L7-96", + "key" : "manufacturerPartId" + }, { + "value" : "NO-130822968778662030113538", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2942084b-8a2a-4354-b5db-c91546105a01", + "partTypeInformation" : { + "manufacturerPartId" : "67887L7-96", + "customerPartId" : "67887L7-96", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 30, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 88, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b13a02a-bbe8-4c10-913e-5d398b959655", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:2b13a02a-bbe8-4c10-913e-5d398b959655", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2b13a02a-bbe8-4c10-913e-5d398b959655" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "86410X0-91", + "key" : "manufacturerPartId" + }, { + "value" : "NO-516154370773180960966872", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2b13a02a-bbe8-4c10-913e-5d398b959655", + "partTypeInformation" : { + "manufacturerPartId" : "86410X0-91", + "customerPartId" : "86410X0-91", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9f104e98-667d-4d8e-bf77-4e04eb33419a", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5301c872-3267-4319-be52-7a537c25f183", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57e625cb-f783-411b-abb6-cbc0d478cecf", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "38788K1-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-792976044338691742057616", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0", + "partTypeInformation" : { + "manufacturerPartId" : "38788K1-68", + "customerPartId" : "38788K1-68", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-792976044338691742057616", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38788K1-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0" ] + }, + "id" : "urn:uuid:2821b5c8-cff2-461c-9445-76eb819cc955" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 69, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9f104e98-667d-4d8e-bf77-4e04eb33419a", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9f104e98-667d-4d8e-bf77-4e04eb33419a" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "76161B7-83", + "key" : "manufacturerPartId" + }, { + "value" : "NO-930608849914797744653918", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9f104e98-667d-4d8e-bf77-4e04eb33419a", + "partTypeInformation" : { + "manufacturerPartId" : "76161B7-83", + "customerPartId" : "76161B7-83", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 2, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 55, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5301c872-3267-4319-be52-7a537c25f183", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ee9122d-7a01-4ae8-8a4f-c22ba9ccb3b2", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5301c872-3267-4319-be52-7a537c25f183", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5301c872-3267-4319-be52-7a537c25f183" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "88009V6-54", + "key" : "manufacturerPartId" + }, { + "value" : "NO-736104036848325172132654", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5301c872-3267-4319-be52-7a537c25f183", + "partTypeInformation" : { + "manufacturerPartId" : "88009V6-54", + "customerPartId" : "88009V6-54", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-736104036848325172132654", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88009V6-54", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5301c872-3267-4319-be52-7a537c25f183" ] + }, + "id" : "urn:uuid:682ce51f-65af-48fb-819d-9d068d519006" + } ] + }, { + "catenaXId" : "urn:uuid:6ee9122d-7a01-4ae8-8a4f-c22ba9ccb3b2", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5301c872-3267-4319-be52-7a537c25f183", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6ee9122d-7a01-4ae8-8a4f-c22ba9ccb3b2" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "65906N7-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-381540514952575565690550", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ee9122d-7a01-4ae8-8a4f-c22ba9ccb3b2", + "partTypeInformation" : { + "manufacturerPartId" : "65906N7-68", + "customerPartId" : "65906N7-68", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 54, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 69, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:57e625cb-f783-411b-abb6-cbc0d478cecf", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57e625cb-f783-411b-abb6-cbc0d478cecf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "76817M3-40", + "key" : "manufacturerPartId" + }, { + "value" : "NO-513941216164144415497913", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57e625cb-f783-411b-abb6-cbc0d478cecf", + "partTypeInformation" : { + "manufacturerPartId" : "76817M3-40", + "customerPartId" : "76817M3-40", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-513941216164144415497913", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "76817M3-40", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:57e625cb-f783-411b-abb6-cbc0d478cecf" ] + }, + "id" : "urn:uuid:7a0da576-9148-4851-a50c-15423c677474" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 24, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 4, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "childItems" : [ { + "catenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-876669999890692293923603", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-876669999890692293923603", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7" ] + }, + "id" : "urn:uuid:2ef38c76-8b23-4565-a61e-9dafc55b2c90" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 89, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 22, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 15, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-109506676219187451514986", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-109506676219187451514986", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, + "id" : "urn:uuid:5606eb54-405a-43ac-a22d-11afcdefcca1" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 25, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 19, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 32, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee" + } ], + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "9A047C7-01", + "key" : "manufacturerPartId" + }, { + "value" : "NO-549191840845202515612833", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "partTypeInformation" : { + "manufacturerPartId" : "9A047C7-01", + "customerPartId" : "9A047C7-01", + "classification" : "component", + "nameAtManufacturer" : "Sealant", + "nameAtCustomer" : "Sealant" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-971411597307451943325171", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-971411597307451943325171", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75" ] + }, + "id" : "urn:uuid:d8fa6146-8ead-47a7-a757-20b7fa92bc30" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-03T09:06:35.553Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T03:26:23.554Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:427725ea-b017-447e-9120-159db70c5cde", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:607ad661-65fd-4535-b100-62119f605a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1e564b09-9353-4726-935b-8f388825f710", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4def8315-96e0-4586-9257-debaedff2142", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:47172491-e327-4aa6-9125-8f037917d412", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3468a376-0781-460d-8116-f856d82991d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:42ca4ada-b460-4611-999e-358915788495", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:94db8f20-0325-419b-b878-abba77600dde", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:57a70421-b526-4785-855a-922917104ed8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4d917918-5d80-4152-822f-95180227262e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:24faab64-718d-479b-913d-9808f3972c07", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:347fa75b-a32b-4579-8844-938065c04854", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "7A047C7-01", + "key" : "manufacturerPartId" + }, { + "value" : "NO-796892190864358929910892", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "partTypeInformation" : { + "manufacturerPartId" : "7A047C7-01", + "customerPartId" : "7A047C7-01", + "classification" : "component", + "nameAtManufacturer" : "Cathode Material ", + "nameAtCustomer" : "Cathode Material " + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 39, + "materialClass" : "8.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-761679497416082190595589", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-761679497416082190595589", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387" ] + }, + "id" : "urn:uuid:ac493a16-5c9b-4ce8-90da-0cba611e9a5d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-08-11T05:29:35.582Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T04:26:24.582Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-482179582910061487579742", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-482179582910061487579742", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9" ] + }, + "id" : "urn:uuid:dbfc4ab3-58fe-4ef0-9649-119813581285" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-25T03:53:02.597Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T18:34:55.597Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:727334c5-5b6f-444f-8204-f19796212538", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:18485718-4e23-451e-ae02-ee412f647061", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:36682599-1346-471d-aec9-a65102611bf6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a613e4de-007a-438e-9014-539df063c200", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7255efed-2373-4993-80a5-746f83246e18", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:45260051-797c-4192-a267-13464af74381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:199cde2c-af12-461c-baf9-295080a03022", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:07c22736-3033-4645-994c-e16c603ea140", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "7A047C7-01", + "key" : "manufacturerPartId" + }, { + "value" : "NO-272857163963370502819806", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "partTypeInformation" : { + "manufacturerPartId" : "7A047C7-01", + "customerPartId" : "7A047C7-01", + "classification" : "component", + "nameAtManufacturer" : "Cathode Material ", + "nameAtCustomer" : "Cathode Material " + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 27, + "materialClass" : "8.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-416597136108919182176688", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-416597136108919182176688", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474" ] + }, + "id" : "urn:uuid:a5308e1e-2a8c-4cf8-a3f6-3e90f0387ef8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-15T08:50:06.609Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T05:42:14.609Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-192560014171666471608132", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-192560014171666471608132", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7" ] + }, + "id" : "urn:uuid:faa0a492-0580-4bd6-90a2-41216dea73b5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-05T09:28:44.624Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T15:38:55.625Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-290178483167013997951099", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-290178483167013997951099", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91" ] + }, + "id" : "urn:uuid:c40b1ff8-70b1-47bf-9d2f-6b88eecb2505" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-07-14T07:57:23.637Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T21:34:34.637Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-969135598974752073483536", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-969135598974752073483536", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d" ] + }, + "id" : "urn:uuid:093ff92c-02ce-4944-ad21-806cd84e91d4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-22T07:34:56.648Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T01:40:16.648Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-350768415741845815721037", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-350768415741845815721037", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade" ] + }, + "id" : "urn:uuid:cece698a-a7ca-425d-b4d1-7abed0fb5484" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-23T10:49:14.660Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T19:25:51.660Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-828182518713544028867855", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-828182518713544028867855", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac" ] + }, + "id" : "urn:uuid:68264349-c3e8-4272-b79f-667b25c1d02f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-25T11:24:56.672Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T00:29:13.672Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-619113576337712022039338", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-619113576337712022039338", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a" ] + }, + "id" : "urn:uuid:7bc6caa4-15c1-47c1-a76e-f4f890d9994f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-10T00:21:16.685Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T21:57:17.685Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-114425959795360017840386", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-114425959795360017840386", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, + "id" : "urn:uuid:acc52cc0-831e-44ba-8765-a843518ab427" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 11, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 85, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 3, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-656846084584590830800547", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-656846084584590830800547", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e" ] + }, + "id" : "urn:uuid:38f6a884-7de8-42f5-b73b-8c42e2a5f908" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-27T16:05:09.709Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T19:17:46.709Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-057521857824456128467020", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-057521857824456128467020", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4" ] + }, + "id" : "urn:uuid:8b082ef2-2164-4cc9-b15e-0dadcd3293e4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-07-19T14:52:10.720Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T12:41:23.720Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-995422617874483837943628", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-995422617874483837943628", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7" ] + }, + "id" : "urn:uuid:6ce6e59f-c214-48a1-af64-2af01fb2c3ca" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-02T07:24:11.730Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T12:20:44.730Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-682081680821177419725881", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-682081680821177419725881", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980" ] + }, + "id" : "urn:uuid:837b716c-ce14-4d91-9d79-1d1da2aa60e4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-28T02:12:29.740Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T08:58:41.740Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-264983341468173782204122", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-264983341468173782204122", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e" ] + }, + "id" : "urn:uuid:36897db4-56e6-4f29-9ed0-e00bf1425e0b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-14T14:57:31.751Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T08:45:49.751Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-968276126398954461107095", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-968276126398954461107095", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119" ] + }, + "id" : "urn:uuid:38de1350-eb02-46e4-b721-81a03f37cf67" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-16T02:46:42.764Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T10:48:50.764Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-711419288258153705938954", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-711419288258153705938954", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96" ] + }, + "id" : "urn:uuid:5c66c089-4d83-4a50-9067-ff5011bebb9c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-05T12:34:53.784Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T20:27:27.784Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-982188812280787051268237", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-982188812280787051268237", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66" ] + }, + "id" : "urn:uuid:9bb5f79f-1c08-4fc5-b085-9eefeb92c025" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-15T17:27:34.797Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T19:16:23.797Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-500326880256341349680887", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-500326880256341349680887", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02" ] + }, + "id" : "urn:uuid:3a36e089-e620-48b1-9eca-abe26d56f5f1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-10-14T17:57:22.809Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T12:49:58.809Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-752523824171629021780422", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-752523824171629021780422", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81" ] + }, + "id" : "urn:uuid:21c23ad9-45de-4dcd-ad7c-d1ad20204271" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-17T05:55:45.822Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T12:23:27.822Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-486116352412481796639391", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-486116352412481796639391", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, + "id" : "urn:uuid:f778e691-df7d-4cfe-9555-e6e922861463" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 67, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 79, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 29, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685" + } ], + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "9A047C7-01", + "key" : "manufacturerPartId" + }, { + "value" : "NO-290610609141509481170544", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "partTypeInformation" : { + "manufacturerPartId" : "9A047C7-01", + "customerPartId" : "9A047C7-01", + "classification" : "component", + "nameAtManufacturer" : "Sealant", + "nameAtCustomer" : "Sealant" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-108620216668481827486575", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-108620216668481827486575", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868" ] + }, + "id" : "urn:uuid:dd356105-cb36-4a0c-88a2-3622fe9f5d7a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-24T19:16:19.843Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T04:27:43.843Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-998491228525504916948856", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-998491228525504916948856", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2" ] + }, + "id" : "urn:uuid:38cfc098-e60b-48de-bc40-c21d604892ca" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-05-24T03:48:25.854Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T15:03:48.854Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-378492358542030751163440", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-378492358542030751163440", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25" ] + }, + "id" : "urn:uuid:c865b7fc-5d6f-482b-bb87-c28b3c0f9d68" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-03-23T15:32:37.863Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T00:17:36.863Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-792698016589179416775078", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-792698016589179416775078", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093" ] + }, + "id" : "urn:uuid:a058dbb1-495b-4295-8f7b-b8de1a453f8b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-24T17:30:14.873Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T07:50:47.873Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-197321936013592894436778", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-197321936013592894436778", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130" ] + }, + "id" : "urn:uuid:cd2a15a2-decd-4db0-9956-4cd8059f8867" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-05-17T09:41:43.883Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T09:26:51.883Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-412901855315278998375257", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-412901855315278998375257", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b" ] + }, + "id" : "urn:uuid:0290f85d-7464-4eed-acfd-e113fa0c6d0a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-07T21:00:59.892Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T05:22:52.892Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-793339587315060009002142", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-793339587315060009002142", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4" ] + }, + "id" : "urn:uuid:ae4cced3-a867-4c29-9f36-f42fd4688a09" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-12T12:24:09.902Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T16:39:23.902Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-664171404291330523518800", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-664171404291330523518800", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570" ] + }, + "id" : "urn:uuid:b1af2f98-1ccd-4ecf-8bc0-cfc983f1b68e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-09-03T20:30:36.913Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T02:35:54.913Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-922876818304079148190351", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-922876818304079148190351", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51" ] + }, + "id" : "urn:uuid:cacaeedd-654c-495d-80f2-a216411e2409" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-28T10:54:47.922Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T00:48:02.922Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-082603413609748941990900", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-082603413609748941990900", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758" ] + }, + "id" : "urn:uuid:77fa6f0a-184c-4d01-969c-315bab3f6723" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-06T03:36:26.932Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T15:04:47.932Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-555012057070559267716947", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-555012057070559267716947", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, + "id" : "urn:uuid:5552ebf5-01b2-4ffe-b954-38a42d46bd17" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 57, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 9, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 55, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-611403895175107840447386", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-611403895175107840447386", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0" ] + }, + "id" : "urn:uuid:7d3d761d-3205-45e1-86ae-b33ad8409dc9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-13T22:49:31.953Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T06:52:34.953Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-652599123603249227945999", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-652599123603249227945999", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a" ] + }, + "id" : "urn:uuid:862ef8fd-09ea-42d3-aea0-4b33042d2321" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-07T08:12:29.964Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T19:40:58.964Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-685766996796258119441455", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-685766996796258119441455", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9" ] + }, + "id" : "urn:uuid:36d6299e-aad0-4669-b579-189bb0e14980" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-28T22:01:17.974Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T11:34:05.974Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-897506043779252421372629", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-897506043779252421372629", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2" ] + }, + "id" : "urn:uuid:8ee70abc-7889-41ef-a148-649d4874bb9d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-20T07:28:21.984Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T22:26:03.984Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-452492511506841231727042", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-452492511506841231727042", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914" ] + }, + "id" : "urn:uuid:e4f8f5a2-a809-46d3-af01-c136d4b44ea4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-02T10:01:11.994Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T00:41:08.994Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-701246175631203061324990", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-701246175631203061324990", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c" ] + }, + "id" : "urn:uuid:a62ca4ad-3cd8-4363-a327-e4ded2c83eba" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-05T08:02:29.004Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T14:05:19.004Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-685303082264243366629501", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-685303082264243366629501", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6" ] + }, + "id" : "urn:uuid:ccffb457-dba2-4f30-89d8-3764cbd8aa24" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-11T00:03:26.013Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T19:56:33.013Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-070033610820598901848883", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-070033610820598901848883", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9" ] + }, + "id" : "urn:uuid:6e4b959a-2309-4d6f-8eee-4be6967ec0ab" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-01-09T23:42:57.023Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T00:13:38.023Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-882151774016538538192933", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-882151774016538538192933", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70" ] + }, + "id" : "urn:uuid:64d7a592-7c5e-4174-b655-dd6bb45fdaf5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-04T14:19:42.033Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T21:24:39.033Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-062463531350789169430413", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-062463531350789169430413", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a" ] + }, + "id" : "urn:uuid:205e6a20-3664-4249-add3-bbafcd7014c4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-24T00:26:35.042Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T05:06:16.042Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-549072934538243426015944", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-549072934538243426015944", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, + "id" : "urn:uuid:0f8b0e11-6fe8-45dc-8ce1-8ce03d93fac3" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 45, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 1, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 79, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-384067404244561154513021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-384067404244561154513021", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365" ] + }, + "id" : "urn:uuid:695e59e3-ed8f-4192-9c0d-c2a9bba60f30" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-10-02T05:00:46.061Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T20:39:21.061Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-587902740678057374328058", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-587902740678057374328058", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5" ] + }, + "id" : "urn:uuid:5a198ac1-8c14-4c9a-9fa2-392561b60694" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-05-29T18:26:00.071Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T22:56:56.071Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-670392931308445473606819", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-670392931308445473606819", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc" ] + }, + "id" : "urn:uuid:b7124c2f-50e3-46a3-8c39-b93abfd270be" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-05T11:06:29.080Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T20:18:31.080Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-983466442379302843768652", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-983466442379302843768652", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b" ] + }, + "id" : "urn:uuid:fac358fd-c152-4992-b378-86fed4796b0b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-21T04:51:48.089Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T17:25:55.089Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-978833844667310480748664", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-978833844667310480748664", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d" ] + }, + "id" : "urn:uuid:222738c5-a84a-475d-af76-09fa87217c4e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-20T19:00:32.100Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T00:49:07.100Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-244695645013855872433338", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-244695645013855872433338", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa" ] + }, + "id" : "urn:uuid:3b2a4079-de49-4354-89a1-687b47813ebc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-09T00:44:33.110Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T04:16:14.110Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-614568349097363931258580", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-614568349097363931258580", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e" ] + }, + "id" : "urn:uuid:1488cdc5-0e67-4145-b87c-00fb55e805a5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-27T04:22:55.119Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T09:00:02.119Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-372690115687487182699710", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-372690115687487182699710", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693" ] + }, + "id" : "urn:uuid:7795915e-b792-4d87-85b9-56f704271b93" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-14T00:55:29.130Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T07:24:38.130Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-085515875337016014150218", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-085515875337016014150218", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae" ] + }, + "id" : "urn:uuid:149c8a90-29ff-43fe-8ff6-b6f4b31dbab2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-03-19T02:58:14.139Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T03:07:24.139Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-422455829860677672209451", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-422455829860677672209451", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c" ] + }, + "id" : "urn:uuid:abc24197-d375-4d1d-8d5f-0ca18b1a26b6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-03-09T12:04:59.149Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T07:22:11.149Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-162135742061376340767577", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-162135742061376340767577", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, + "id" : "urn:uuid:ccf55f44-580b-4de6-bce0-4c774e794c3d" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 76, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 40, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 13, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-812592227436919811486096", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-812592227436919811486096", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3" ] + }, + "id" : "urn:uuid:9cae53ee-33f6-48a7-9c73-ffdf92c3954b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-14T20:38:35.168Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T13:22:51.168Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-052727498653566058405676", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-052727498653566058405676", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470" ] + }, + "id" : "urn:uuid:52f81cad-b519-4e77-85d1-6986b212db8f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-04T03:04:42.178Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T20:00:14.179Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-787041491849450006034414", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-787041491849450006034414", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1" ] + }, + "id" : "urn:uuid:725d9d56-e927-4487-a708-52e8aa4c8bc0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-19T07:48:40.189Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T09:32:19.189Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-801163093507576644278289", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-801163093507576644278289", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23" ] + }, + "id" : "urn:uuid:06c6ad36-edff-4a3c-969d-f4411c12ba73" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-09T09:31:00.200Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T14:09:55.200Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-963997337975321022362724", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-963997337975321022362724", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555" ] + }, + "id" : "urn:uuid:c08ad934-0de5-4995-95ee-6900eca868c2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-13T00:37:48.214Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T06:09:04.214Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-632188170597673357828655", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-632188170597673357828655", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058" ] + }, + "id" : "urn:uuid:0bda3c78-ffd9-448d-9758-1119633dccbc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-15T13:25:37.231Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T13:31:08.231Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-626473972228942632151331", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-626473972228942632151331", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389" ] + }, + "id" : "urn:uuid:d052e55f-9a5e-4e59-8fc1-79d8d8a3bad7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-12-15T12:57:37.241Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T06:07:26.241Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-568722143475188473079045", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-568722143475188473079045", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8" ] + }, + "id" : "urn:uuid:c9516fcf-1d78-4725-b5d0-46051f4cc7ec" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-05T02:06:13.251Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T08:15:54.251Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-943318143340316150430430", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-943318143340316150430430", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac" ] + }, + "id" : "urn:uuid:1a3d80ec-f790-4cc8-ba4c-b6d23e79d706" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-12T13:29:17.261Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T18:32:56.261Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-343983147105729742114524", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-343983147105729742114524", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a" ] + }, + "id" : "urn:uuid:7b4058fe-0938-4b06-a636-f29a9b259d1d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-01-14T02:13:38.272Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T03:21:15.272Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "electric", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "childItems" : [ { + "catenaXId" : "urn:uuid:f665267c-0a61-4377-b6ad-b30d5478e924", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f3e2fa33-538d-4c8b-ad72-8f0b4ede3b80", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eb0b6b81-b232-478d-ad90-8cfbd8a18efc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8a906410-7a40-4555-af7b-26d7eab1445f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:609975e6-6275-4f72-a050-d6da88bb7e87", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:07afa459-e9fa-42cf-a5a5-aae4eedd24fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1d6f3a2c-722b-40ae-b18b-28aafcee939f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f37f2e28-7098-41f4-94a8-05a0205cd80d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:343db4cb-9d4f-4bf5-8baa-810e04462af0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6fccf022-a777-4166-8dc1-45c9e6e7bd6f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:68a321b4-4142-402e-8748-3a92dccfd498", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:24ff4166-bea8-4fa7-b11c-c3e3af5fee99", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:157a3434-d281-4de4-9652-150f9049e6b7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b0a64381-0f6a-4448-8a17-5e2ec2cf0d79", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:68ecfa10-6024-4863-af24-0008679113aa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed442b9d-34bd-4a2e-9432-42a18d3ebcc9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a2961ad6-97a6-4204-bde2-3bf24ea7eb26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:98e7b7bb-99b8-482b-88aa-5f43b6ac48a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dafb9c98-c94d-4957-90bb-ef9aa19b42ab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fbae2f31-880b-453d-bed3-798ccdf3a1b0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:367cc710-899c-4d41-9b6c-4acbec4942a6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1814d556-1265-42a7-8083-99aec5522368", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5ced3ac6-71ce-4ed7-a161-cc364d1f8179", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d2ed860-fec6-48f2-b7e4-86f9c8f0a594", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:269584ac-ac45-4da4-b05a-8084649446f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5cbaff55-69c6-4585-ba92-74ca55a56b50", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bf612a5c-4209-4880-8f8d-5c53ce1b7a55", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "MP-26", + "key" : "manufacturerPartId" + }, { + "value" : "OMAXHQNCURFKMSUTH", + "key" : "partInstanceId" + }, { + "value" : "OMAXHQNCURFKMSUTH", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2020-05-03T08:03:17.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "partTypeInformation" : { + "manufacturerPartId" : "MP-26", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMAXHQNCURFKMSUTH", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "MP-26", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_fully_electric.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Fully Electric" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, + "id" : "urn:uuid:3957c5ae-1c66-477c-9ace-1bb859a6d01d" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 43, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 22, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 16, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 9, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 3, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 10, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 17, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 80, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 76, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 76, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f665267c-0a61-4377-b6ad-b30d5478e924", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f665267c-0a61-4377-b6ad-b30d5478e924" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-106007980428748264185856", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f665267c-0a61-4377-b6ad-b30d5478e924", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-106007980428748264185856", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f665267c-0a61-4377-b6ad-b30d5478e924" ] + }, + "id" : "urn:uuid:968d1cbb-dc5c-4cf7-8f01-0f36dd5ecdef" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4", + "childItems" : [ { + "catenaXId" : "urn:uuid:c1f03e18-442d-4fb8-8fc7-8c07aa7907e6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-528067345595459829403539", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-528067345595459829403539", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4" ] + }, + "id" : "urn:uuid:ad4e9bcd-89bc-4cf5-8615-69556aac082e" + } ] + }, { + "catenaXId" : "urn:uuid:c1f03e18-442d-4fb8-8fc7-8c07aa7907e6", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c1f03e18-442d-4fb8-8fc7-8c07aa7907e6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-945800114141152960048238", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c1f03e18-442d-4fb8-8fc7-8c07aa7907e6", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-945800114141152960048238", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c1f03e18-442d-4fb8-8fc7-8c07aa7907e6" ] + }, + "id" : "urn:uuid:19cc7056-6f80-49f4-8afc-5b1a16cf6fde" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702", + "childItems" : [ { + "catenaXId" : "urn:uuid:a7600f88-d1d0-478a-a174-8e7ab14033e4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-650212027862005075942913", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-650212027862005075942913", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702" ] + }, + "id" : "urn:uuid:2609026f-967b-4b84-88f9-4469ee9ef4e3" + } ] + }, { + "catenaXId" : "urn:uuid:a7600f88-d1d0-478a-a174-8e7ab14033e4", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a7600f88-d1d0-478a-a174-8e7ab14033e4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-032399651166068884871502", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a7600f88-d1d0-478a-a174-8e7ab14033e4", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-032399651166068884871502", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a7600f88-d1d0-478a-a174-8e7ab14033e4" ] + }, + "id" : "urn:uuid:3e5938af-0da3-4864-be93-3e540eb89957" + } ] + }, { + "catenaXId" : "urn:uuid:f3e2fa33-538d-4c8b-ad72-8f0b4ede3b80", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f3e2fa33-538d-4c8b-ad72-8f0b4ede3b80" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-604597766876898853139458", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f3e2fa33-538d-4c8b-ad72-8f0b4ede3b80", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-604597766876898853139458", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f3e2fa33-538d-4c8b-ad72-8f0b4ede3b80" ] + }, + "id" : "urn:uuid:1b2d8236-3bb0-4730-a49e-e424c3c20624" + } ] + }, { + "catenaXId" : "urn:uuid:eb0b6b81-b232-478d-ad90-8cfbd8a18efc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eb0b6b81-b232-478d-ad90-8cfbd8a18efc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-215369228055516785960235", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eb0b6b81-b232-478d-ad90-8cfbd8a18efc", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-215369228055516785960235", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:eb0b6b81-b232-478d-ad90-8cfbd8a18efc" ] + }, + "id" : "urn:uuid:46b8e181-8ea2-4a35-b5ff-73b546c8c8c6" + } ] + }, { + "catenaXId" : "urn:uuid:8a906410-7a40-4555-af7b-26d7eab1445f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8a906410-7a40-4555-af7b-26d7eab1445f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-771638396659446552253058", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8a906410-7a40-4555-af7b-26d7eab1445f", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-771638396659446552253058", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8a906410-7a40-4555-af7b-26d7eab1445f" ] + }, + "id" : "urn:uuid:3c12deca-174f-4127-bee6-cce15ada7e03" + } ] + }, { + "catenaXId" : "urn:uuid:609975e6-6275-4f72-a050-d6da88bb7e87", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:609975e6-6275-4f72-a050-d6da88bb7e87" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-362770532405989669678773", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:609975e6-6275-4f72-a050-d6da88bb7e87", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-362770532405989669678773", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:609975e6-6275-4f72-a050-d6da88bb7e87" ] + }, + "id" : "urn:uuid:24cadcf1-7b04-477b-a926-47b1e2543f89" + } ] + }, { + "catenaXId" : "urn:uuid:07afa459-e9fa-42cf-a5a5-aae4eedd24fa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:07afa459-e9fa-42cf-a5a5-aae4eedd24fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-483967166938801067185122", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:07afa459-e9fa-42cf-a5a5-aae4eedd24fa", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-483967166938801067185122", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:07afa459-e9fa-42cf-a5a5-aae4eedd24fa" ] + }, + "id" : "urn:uuid:e888a841-d493-4737-8d79-402305fcfa19" + } ] + }, { + "catenaXId" : "urn:uuid:1d6f3a2c-722b-40ae-b18b-28aafcee939f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1d6f3a2c-722b-40ae-b18b-28aafcee939f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-607174050755523277464342", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1d6f3a2c-722b-40ae-b18b-28aafcee939f", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-607174050755523277464342", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1d6f3a2c-722b-40ae-b18b-28aafcee939f" ] + }, + "id" : "urn:uuid:d88540a5-828f-4151-8b07-91f46644a540" + } ] + }, { + "catenaXId" : "urn:uuid:f37f2e28-7098-41f4-94a8-05a0205cd80d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f37f2e28-7098-41f4-94a8-05a0205cd80d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-948336786204301998258059", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f37f2e28-7098-41f4-94a8-05a0205cd80d", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-948336786204301998258059", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f37f2e28-7098-41f4-94a8-05a0205cd80d" ] + }, + "id" : "urn:uuid:30c52553-96ad-4195-9363-a8702b8036ff" + } ] + }, { + "catenaXId" : "urn:uuid:343db4cb-9d4f-4bf5-8baa-810e04462af0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:343db4cb-9d4f-4bf5-8baa-810e04462af0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-087701588558515441501874", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:343db4cb-9d4f-4bf5-8baa-810e04462af0", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-087701588558515441501874", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:343db4cb-9d4f-4bf5-8baa-810e04462af0" ] + }, + "id" : "urn:uuid:54f71ce7-2007-4e8e-81f0-db0e8ec39749" + } ] + }, { + "catenaXId" : "urn:uuid:6fccf022-a777-4166-8dc1-45c9e6e7bd6f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6fccf022-a777-4166-8dc1-45c9e6e7bd6f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-462902976819578919876945", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6fccf022-a777-4166-8dc1-45c9e6e7bd6f", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-462902976819578919876945", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6fccf022-a777-4166-8dc1-45c9e6e7bd6f" ] + }, + "id" : "urn:uuid:b2f69610-174d-4a47-bd18-a054099a93e5" + } ] + }, { + "catenaXId" : "urn:uuid:68a321b4-4142-402e-8748-3a92dccfd498", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:68a321b4-4142-402e-8748-3a92dccfd498" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-547282934665427045287084", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:68a321b4-4142-402e-8748-3a92dccfd498", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-547282934665427045287084", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:68a321b4-4142-402e-8748-3a92dccfd498" ] + }, + "id" : "urn:uuid:1f9e3bf9-8acb-4f20-b272-7ef80ba1e092" + } ] + }, { + "catenaXId" : "urn:uuid:24ff4166-bea8-4fa7-b11c-c3e3af5fee99", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:24ff4166-bea8-4fa7-b11c-c3e3af5fee99" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-862024517922591933673483", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24ff4166-bea8-4fa7-b11c-c3e3af5fee99", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-862024517922591933673483", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:24ff4166-bea8-4fa7-b11c-c3e3af5fee99" ] + }, + "id" : "urn:uuid:3b544907-bf77-4858-bc95-aa8259391bed" + } ] + }, { + "catenaXId" : "urn:uuid:157a3434-d281-4de4-9652-150f9049e6b7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:157a3434-d281-4de4-9652-150f9049e6b7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-240350669231249580367560", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:157a3434-d281-4de4-9652-150f9049e6b7", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-240350669231249580367560", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:157a3434-d281-4de4-9652-150f9049e6b7" ] + }, + "id" : "urn:uuid:b71a47b4-84ad-4474-9b10-362c7cc80bd3" + } ] + }, { + "catenaXId" : "urn:uuid:b0a64381-0f6a-4448-8a17-5e2ec2cf0d79", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b0a64381-0f6a-4448-8a17-5e2ec2cf0d79" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-788629439287672648549561", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b0a64381-0f6a-4448-8a17-5e2ec2cf0d79", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-788629439287672648549561", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b0a64381-0f6a-4448-8a17-5e2ec2cf0d79" ] + }, + "id" : "urn:uuid:bcca153c-d0ec-4aac-9271-79ddb2d0debb" + } ] + }, { + "catenaXId" : "urn:uuid:68ecfa10-6024-4863-af24-0008679113aa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:68ecfa10-6024-4863-af24-0008679113aa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-486458150655109629099835", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:68ecfa10-6024-4863-af24-0008679113aa", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-486458150655109629099835", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:68ecfa10-6024-4863-af24-0008679113aa" ] + }, + "id" : "urn:uuid:788fc4c5-3e3c-4145-aa91-6a31806e0431" + } ] + }, { + "catenaXId" : "urn:uuid:ed442b9d-34bd-4a2e-9432-42a18d3ebcc9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ed442b9d-34bd-4a2e-9432-42a18d3ebcc9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-719809101738152364981766", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ed442b9d-34bd-4a2e-9432-42a18d3ebcc9", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-719809101738152364981766", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ed442b9d-34bd-4a2e-9432-42a18d3ebcc9" ] + }, + "id" : "urn:uuid:021e7649-45e6-43e8-8df3-a7266d6346d1" + } ] + }, { + "catenaXId" : "urn:uuid:a2961ad6-97a6-4204-bde2-3bf24ea7eb26", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a2961ad6-97a6-4204-bde2-3bf24ea7eb26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-368818081552801838622181", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a2961ad6-97a6-4204-bde2-3bf24ea7eb26", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-368818081552801838622181", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a2961ad6-97a6-4204-bde2-3bf24ea7eb26" ] + }, + "id" : "urn:uuid:5bdcaf7b-702b-46fc-b40f-77bbc34f3455" + } ] + }, { + "catenaXId" : "urn:uuid:98e7b7bb-99b8-482b-88aa-5f43b6ac48a2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:98e7b7bb-99b8-482b-88aa-5f43b6ac48a2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-284653089714077020504827", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:98e7b7bb-99b8-482b-88aa-5f43b6ac48a2", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-284653089714077020504827", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:98e7b7bb-99b8-482b-88aa-5f43b6ac48a2" ] + }, + "id" : "urn:uuid:add30171-978a-418b-a275-100883a869e4" + } ] + }, { + "catenaXId" : "urn:uuid:dafb9c98-c94d-4957-90bb-ef9aa19b42ab", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dafb9c98-c94d-4957-90bb-ef9aa19b42ab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-047137410596036926193071", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dafb9c98-c94d-4957-90bb-ef9aa19b42ab", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-047137410596036926193071", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:dafb9c98-c94d-4957-90bb-ef9aa19b42ab" ] + }, + "id" : "urn:uuid:50938500-f5eb-4f6a-8e8b-99fa21bb3dc9" + } ] + }, { + "catenaXId" : "urn:uuid:fbae2f31-880b-453d-bed3-798ccdf3a1b0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fbae2f31-880b-453d-bed3-798ccdf3a1b0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-076747745551496921663782", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fbae2f31-880b-453d-bed3-798ccdf3a1b0", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-076747745551496921663782", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fbae2f31-880b-453d-bed3-798ccdf3a1b0" ] + }, + "id" : "urn:uuid:f20fb49d-6505-44c2-a5e3-c646e96b7fe7" + } ] + }, { + "catenaXId" : "urn:uuid:367cc710-899c-4d41-9b6c-4acbec4942a6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:367cc710-899c-4d41-9b6c-4acbec4942a6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-928173161141375765333514", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:367cc710-899c-4d41-9b6c-4acbec4942a6", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-928173161141375765333514", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:367cc710-899c-4d41-9b6c-4acbec4942a6" ] + }, + "id" : "urn:uuid:3586bb50-855d-4a7a-9414-a9fe91e7c9e9" + } ] + }, { + "catenaXId" : "urn:uuid:1814d556-1265-42a7-8083-99aec5522368", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1814d556-1265-42a7-8083-99aec5522368" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-581365151885143750586562", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1814d556-1265-42a7-8083-99aec5522368", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-581365151885143750586562", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1814d556-1265-42a7-8083-99aec5522368" ] + }, + "id" : "urn:uuid:79edff87-5e8e-406c-930b-6a4581b6df09" + } ] + }, { + "catenaXId" : "urn:uuid:5ced3ac6-71ce-4ed7-a161-cc364d1f8179", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5ced3ac6-71ce-4ed7-a161-cc364d1f8179" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-781379015587664192476985", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5ced3ac6-71ce-4ed7-a161-cc364d1f8179", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-781379015587664192476985", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5ced3ac6-71ce-4ed7-a161-cc364d1f8179" ] + }, + "id" : "urn:uuid:af48cb77-263f-4e95-8d58-83ba2efcf591" + } ] + }, { + "catenaXId" : "urn:uuid:6d2ed860-fec6-48f2-b7e4-86f9c8f0a594", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6d2ed860-fec6-48f2-b7e4-86f9c8f0a594" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-364155757337431777428132", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6d2ed860-fec6-48f2-b7e4-86f9c8f0a594", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-364155757337431777428132", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6d2ed860-fec6-48f2-b7e4-86f9c8f0a594" ] + }, + "id" : "urn:uuid:aa331b31-5a46-4cbf-b3e7-b5da810aed51" + } ] + }, { + "catenaXId" : "urn:uuid:269584ac-ac45-4da4-b05a-8084649446f2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:269584ac-ac45-4da4-b05a-8084649446f2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-124856165896103005325911", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:269584ac-ac45-4da4-b05a-8084649446f2", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-124856165896103005325911", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:269584ac-ac45-4da4-b05a-8084649446f2" ] + }, + "id" : "urn:uuid:4c1391b9-be7e-41c9-83a6-0ad5064167d8" + } ] + }, { + "catenaXId" : "urn:uuid:5cbaff55-69c6-4585-ba92-74ca55a56b50", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5cbaff55-69c6-4585-ba92-74ca55a56b50" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-005898758148912592802762", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5cbaff55-69c6-4585-ba92-74ca55a56b50", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-005898758148912592802762", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5cbaff55-69c6-4585-ba92-74ca55a56b50" ] + }, + "id" : "urn:uuid:b5674a6f-1c90-4c7f-85d7-f04b1de1f6e5" + } ] + }, { + "catenaXId" : "urn:uuid:bf612a5c-4209-4880-8f8d-5c53ce1b7a55", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bf612a5c-4209-4880-8f8d-5c53ce1b7a55" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-505254396415605449128868", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bf612a5c-4209-4880-8f8d-5c53ce1b7a55", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-505254396415605449128868", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bf612a5c-4209-4880-8f8d-5c53ce1b7a55" ] + }, + "id" : "urn:uuid:b3ae9f9f-da8e-4376-88e1-cee4a64cc46a" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", + "childItems" : [ { + "catenaXId" : "urn:uuid:baf381ed-0d4c-4d25-b774-2d0df1e2a05c", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:780afdc2-b1a0-409d-9abb-aac570eef533", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-383651693111017915695004", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-383651693111017915695004", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-383651693111017915695004", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e" ] + }, + "id" : "urn:uuid:80355f11-78bb-4247-8237-17ce2cb146bc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 71, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 69, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 89, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:baf381ed-0d4c-4d25-b774-2d0df1e2a05c", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:baf381ed-0d4c-4d25-b774-2d0df1e2a05c" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "22905P4-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-124169107725705484145134", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:baf381ed-0d4c-4d25-b774-2d0df1e2a05c", + "partTypeInformation" : { + "manufacturerPartId" : "22905P4-25", + "customerPartId" : "22905P4-25", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 13, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 79, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d", + "childItems" : [ { + "catenaXId" : "urn:uuid:0de5cdd7-7a92-4186-817c-19a7a4358cfc", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "23884Z9-81", + "key" : "manufacturerPartId" + }, { + "value" : "NO-344016827253540806557597", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d", + "partTypeInformation" : { + "manufacturerPartId" : "23884Z9-81", + "customerPartId" : "23884Z9-81", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-344016827253540806557597", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "23884Z9-81", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d" ] + }, + "id" : "urn:uuid:59419216-df90-4fe6-963b-3db510e306a0" + } ] + }, { + "catenaXId" : "urn:uuid:0de5cdd7-7a92-4186-817c-19a7a4358cfc", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0de5cdd7-7a92-4186-817c-19a7a4358cfc" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "03078P9-20", + "key" : "manufacturerPartId" + }, { + "value" : "NO-255126233639317868350022", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0de5cdd7-7a92-4186-817c-19a7a4358cfc", + "partTypeInformation" : { + "manufacturerPartId" : "03078P9-20", + "customerPartId" : "03078P9-20", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 27, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 53, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:780afdc2-b1a0-409d-9abb-aac570eef533", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:780afdc2-b1a0-409d-9abb-aac570eef533", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:780afdc2-b1a0-409d-9abb-aac570eef533" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "74678T0-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-804237927064425939310512", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:780afdc2-b1a0-409d-9abb-aac570eef533", + "partTypeInformation" : { + "manufacturerPartId" : "74678T0-76", + "customerPartId" : "74678T0-76", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6", + "childItems" : [ { + "catenaXId" : "urn:uuid:f6d580d4-6ca9-4f28-a66e-e12b25247949", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e064dc9c-0e0a-448c-9a72-b6c0de81f20c", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "91885R7-45", + "key" : "manufacturerPartId" + }, { + "value" : "NO-003431981326579709430207", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6", + "partTypeInformation" : { + "manufacturerPartId" : "91885R7-45", + "customerPartId" : "91885R7-45", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-003431981326579709430207", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "91885R7-45", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6" ] + }, + "id" : "urn:uuid:4534fc75-22f9-4f91-9fc5-f5ef8f6978cd" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 51, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f6d580d4-6ca9-4f28-a66e-e12b25247949", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f6d580d4-6ca9-4f28-a66e-e12b25247949" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "25124P0-05", + "key" : "manufacturerPartId" + }, { + "value" : "NO-038745129846406742447370", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f6d580d4-6ca9-4f28-a66e-e12b25247949", + "partTypeInformation" : { + "manufacturerPartId" : "25124P0-05", + "customerPartId" : "25124P0-05", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 23, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 8, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658", + "childItems" : [ { + "catenaXId" : "urn:uuid:1bdc7eb8-affb-4e33-b158-5bb65c2873e8", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "14106R5-79", + "key" : "manufacturerPartId" + }, { + "value" : "NO-493889557060891756782881", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658", + "partTypeInformation" : { + "manufacturerPartId" : "14106R5-79", + "customerPartId" : "14106R5-79", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-493889557060891756782881", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "14106R5-79", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658" ] + }, + "id" : "urn:uuid:b3b217f2-408e-47f3-a4cc-af8c87fe3668" + } ] + }, { + "catenaXId" : "urn:uuid:1bdc7eb8-affb-4e33-b158-5bb65c2873e8", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1bdc7eb8-affb-4e33-b158-5bb65c2873e8" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "61320C9-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-231603813707313451397628", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1bdc7eb8-affb-4e33-b158-5bb65c2873e8", + "partTypeInformation" : { + "manufacturerPartId" : "61320C9-73", + "customerPartId" : "61320C9-73", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 89, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 48, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e064dc9c-0e0a-448c-9a72-b6c0de81f20c", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e064dc9c-0e0a-448c-9a72-b6c0de81f20c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "64442K1-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-546932694469912755713426", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e064dc9c-0e0a-448c-9a72-b6c0de81f20c", + "partTypeInformation" : { + "manufacturerPartId" : "64442K1-87", + "customerPartId" : "64442K1-87", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-546932694469912755713426", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "64442K1-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e064dc9c-0e0a-448c-9a72-b6c0de81f20c" ] + }, + "id" : "urn:uuid:32718ed3-8cb7-4366-b211-5ad5aab72b22" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 51, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 22, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "childItems" : [ { + "catenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-524198942742793474809582", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-524198942742793474809582", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1" ] + }, + "id" : "urn:uuid:632fee35-880b-4edb-918d-936a1dbdbc7a" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 86, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 36, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 31, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:727334c5-5b6f-444f-8204-f19796212538", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-281184918907205278780214", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-281184918907205278780214", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, + "id" : "urn:uuid:678be9a2-7db1-4b0a-8e7e-c9e481ed0531" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 26, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 56, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 73, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-664838530784264292825994", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-664838530784264292825994", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617" ] + }, + "id" : "urn:uuid:c0c6b802-0e0f-46ca-9149-279dfc7e2e75" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-03T03:02:31.459Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T07:57:46.459Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-865985952698748857857575", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-865985952698748857857575", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7" ] + }, + "id" : "urn:uuid:20b0e311-207d-43a4-a328-f4857a3b4c05" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-07T02:12:08.470Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T10:21:23.470Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-959819994002037055577453", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-959819994002037055577453", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613" ] + }, + "id" : "urn:uuid:40be1d0b-3eff-4530-a313-646192990c89" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-10T23:24:44.479Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T03:14:06.479Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-046730144426974703387724", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-046730144426974703387724", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6" ] + }, + "id" : "urn:uuid:0296acdb-c089-44d5-b2db-d86dbc59c120" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-24T01:01:49.490Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T16:29:21.490Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-036956299554391301899681", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-036956299554391301899681", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48" ] + }, + "id" : "urn:uuid:5d3677ab-e771-4f78-8861-43f1f7adf91f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-04-19T02:01:42.503Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T00:19:43.503Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-349515664268043104855252", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-349515664268043104855252", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3" ] + }, + "id" : "urn:uuid:dae1e036-4fb0-4769-b3f3-b3e08ea7f723" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-07T02:44:23.523Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T20:23:50.523Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-551778332363344549572953", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-551778332363344549572953", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e" ] + }, + "id" : "urn:uuid:b26d111a-c98a-4922-bd22-5ce958e2045b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-23T07:38:24.543Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T15:47:29.543Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-797059836955119467270195", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-797059836955119467270195", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12" ] + }, + "id" : "urn:uuid:ebeadc3b-eb88-474b-b8e0-7e8aa915b670" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-27T08:35:37.556Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T03:38:20.556Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-807883019237247820516277", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-807883019237247820516277", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957" ] + }, + "id" : "urn:uuid:e588f1dc-e9c8-4384-9258-34398de3aa7b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-29T12:25:29.566Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T14:38:06.566Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:727334c5-5b6f-444f-8204-f19796212538", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:727334c5-5b6f-444f-8204-f19796212538", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:727334c5-5b6f-444f-8204-f19796212538" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-382736788411211349732855", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:727334c5-5b6f-444f-8204-f19796212538", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-382736788411211349732855", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:727334c5-5b6f-444f-8204-f19796212538" ] + }, + "id" : "urn:uuid:232e86be-b074-40d9-9200-d7039dc20315" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-15T02:10:09.576Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T07:22:05.576Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-611974914654171991762427", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-611974914654171991762427", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, + "id" : "urn:uuid:6fabc6f8-65ed-4e1f-9e5b-3a1f3e340312" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 68, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 54, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 25, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-353760296935474429014173", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-353760296935474429014173", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc" ] + }, + "id" : "urn:uuid:1318e218-6686-4a79-959f-bc42a0aa66ee" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-23T15:33:07.597Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T19:15:29.597Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-793037921335156056879866", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-793037921335156056879866", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8" ] + }, + "id" : "urn:uuid:1fc9e029-db03-4ebe-91f4-d760ba300766" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-06T15:32:07.607Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T22:23:31.607Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-455601960524814544028857", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-455601960524814544028857", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c" ] + }, + "id" : "urn:uuid:a6a2ddc3-5b1d-4a2d-b34e-fd93e5e14625" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-09T10:41:40.618Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T18:36:19.618Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-810971560794386964828522", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-810971560794386964828522", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4" ] + }, + "id" : "urn:uuid:dbd59c4d-5392-4283-b1b6-0182efb05e87" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-06T11:22:45.628Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T03:40:28.628Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-656629650339725245395583", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-656629650339725245395583", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071" ] + }, + "id" : "urn:uuid:f002a2da-72a1-4f30-9287-92c92e687ab3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-05T07:00:57.637Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T02:03:51.637Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-800550115511277566346325", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-800550115511277566346325", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c" ] + }, + "id" : "urn:uuid:4d9aa86f-b432-4510-986a-873e7f604905" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-31T07:55:30.647Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T21:01:17.647Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-084353448448816587347911", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-084353448448816587347911", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8" ] + }, + "id" : "urn:uuid:a7d418ee-e099-426b-810a-a552df04fbe1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-23T21:14:27.656Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T14:37:18.656Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-548917566144746678826978", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-548917566144746678826978", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587" ] + }, + "id" : "urn:uuid:5f081464-89d2-4ff5-bfe2-f0b1ca315614" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-09T00:25:57.666Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T08:39:33.666Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-076423024139624824363425", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-076423024139624824363425", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3" ] + }, + "id" : "urn:uuid:6b9f7b19-1d04-4f57-9bd3-69274558d545" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-23T13:38:36.676Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T11:12:32.676Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-862963319298472676983571", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-862963319298472676983571", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d" ] + }, + "id" : "urn:uuid:0b43dabe-b2b0-48cf-baa9-272f8b59bd82" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-23T09:10:52.686Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T05:47:27.686Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-031519042298879929601870", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-031519042298879929601870", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, + "id" : "urn:uuid:a6b5f8ba-bd4c-4e9e-9fe2-aa0310469c14" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 60, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 40, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 12, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-415876678588015581175100", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-415876678588015581175100", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea" ] + }, + "id" : "urn:uuid:a63f22ea-846e-4b4c-8b06-6dd0e32c4609" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-14T07:04:47.709Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T04:02:19.709Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-407827862612779785422975", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-407827862612779785422975", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1" ] + }, + "id" : "urn:uuid:ee482aa2-44ba-43c5-b40e-491046485a90" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-02T19:06:36.720Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T22:14:58.720Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-322136762987033293322517", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-322136762987033293322517", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b" ] + }, + "id" : "urn:uuid:a0d4125d-ed50-42db-821d-d85c4eb4429e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-06T10:27:14.729Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T16:10:10.729Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-479823069813277338654124", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-479823069813277338654124", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5" ] + }, + "id" : "urn:uuid:a057ecaf-c2f3-414c-b82e-a321535c5f43" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-29T18:19:06.738Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T16:17:50.738Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-301740887781139217351985", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-301740887781139217351985", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161" ] + }, + "id" : "urn:uuid:56395ca9-f105-42c9-89b3-b7ab5a54ebcd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-21T19:40:26.747Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T22:08:44.747Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-837889769711059859948545", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-837889769711059859948545", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4" ] + }, + "id" : "urn:uuid:d1c005f7-0dac-4e25-8cfc-378354baf488" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-04T10:18:34.757Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T06:49:18.757Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-413395366981982744818287", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-413395366981982744818287", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225" ] + }, + "id" : "urn:uuid:76c85615-64d6-4a46-84f8-53611ac0b321" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-07-20T09:35:21.766Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T08:45:51.766Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-036936489085863099319304", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-036936489085863099319304", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b" ] + }, + "id" : "urn:uuid:5437c669-3383-475e-ace0-25c6bc0f1487" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-08T22:57:39.775Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T13:46:40.775Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-206779165462448951677280", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-206779165462448951677280", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e" ] + }, + "id" : "urn:uuid:12b93ed7-6e9a-4cb0-9b8c-d3d25cdfd7d0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-24T13:13:41.785Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T06:26:52.785Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-063244957472766131530573", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-063244957472766131530573", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6" ] + }, + "id" : "urn:uuid:21d4952c-8971-4364-9910-bcd63d571d31" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-03-07T21:56:08.794Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T09:54:24.794Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-206993485934919404087940", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-206993485934919404087940", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, + "id" : "urn:uuid:998ebf84-cb61-4ab7-8418-f254f234da1d" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 18, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 21, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 6, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-604153970205483942194355", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-604153970205483942194355", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba" ] + }, + "id" : "urn:uuid:463aa10d-4968-4c27-b4cb-a8569a44fc3b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-24T22:08:11.812Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T04:40:44.812Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-566657048584489846504986", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-566657048584489846504986", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a" ] + }, + "id" : "urn:uuid:f56bcdb0-4932-4d38-a37d-5f6ea647ac3d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-24T17:21:21.821Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T14:52:58.821Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-808644802427560863927381", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-808644802427560863927381", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb" ] + }, + "id" : "urn:uuid:0eeb308b-f7e4-486a-82ca-22b183829483" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-03T06:12:39.830Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T15:58:35.830Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-959416880931397177951407", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-959416880931397177951407", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6" ] + }, + "id" : "urn:uuid:64de76ff-50b4-495c-9837-f57009a452e8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-11T14:49:19.839Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T14:22:44.839Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-419202233148959307407716", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-419202233148959307407716", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5" ] + }, + "id" : "urn:uuid:a0839e7c-4517-4006-aaea-d49c65279e34" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-03T04:55:41.848Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T22:55:58.848Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-594982735933494829813117", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-594982735933494829813117", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467" ] + }, + "id" : "urn:uuid:9ef0acc4-0a73-4f9e-be59-673936db90c2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-12T10:43:57.857Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T12:39:46.857Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-181733067844809556515868", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-181733067844809556515868", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f" ] + }, + "id" : "urn:uuid:295b4599-5e40-40d8-a648-3f5a196a634d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-29T10:15:38.865Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T14:04:56.865Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-439788566427712834595848", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-439788566427712834595848", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f" ] + }, + "id" : "urn:uuid:10333751-2007-495d-871f-3eb689d88566" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-01T12:57:05.874Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T23:23:15.874Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-925306280310272935151881", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-925306280310272935151881", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246" ] + }, + "id" : "urn:uuid:f37cc490-4b95-4687-bcc5-c4e1ed3773d5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-01-10T01:08:41.883Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T20:59:37.883Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-204133685348501349592938", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-204133685348501349592938", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c" ] + }, + "id" : "urn:uuid:422a0281-39d8-409a-8433-cf72e27be8aa" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-30T13:14:40.891Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T19:08:01.891Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-590693594110628921835559", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-590693594110628921835559", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, + "id" : "urn:uuid:0b9b17a2-914c-4779-87a5-44aa487f90db" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 19, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 13, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 20, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-238655979759836530651483", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-238655979759836530651483", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b" ] + }, + "id" : "urn:uuid:2126102f-1153-4907-8147-b30d75df91ca" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-30T21:48:31.909Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T12:08:41.909Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-429998575442804707830155", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-429998575442804707830155", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba" ] + }, + "id" : "urn:uuid:21f4ec56-0d7a-449b-be49-20a80674c50a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-17T10:03:12.919Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T08:38:12.919Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-870184597532420247967510", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-870184597532420247967510", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21" ] + }, + "id" : "urn:uuid:8b6a5f40-3b47-48aa-aa5a-7b58b9678a45" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-08-25T02:43:15.927Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T10:59:24.927Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-828180051824237940876238", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-828180051824237940876238", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a" ] + }, + "id" : "urn:uuid:95119857-cc07-4533-86ab-c8edbb55d1fd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-03-04T16:56:23.936Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T20:01:37.936Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-403635407940443237055474", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-403635407940443237055474", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939" ] + }, + "id" : "urn:uuid:a942b67e-7460-474b-9a00-ce3f7f06448f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-11T17:17:57.946Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T06:52:18.946Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-089355368377391612708353", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-089355368377391612708353", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714" ] + }, + "id" : "urn:uuid:60443cab-2f2d-4b99-9a57-742be32a0411" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-08T05:46:32.955Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T12:24:56.955Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-979624634600533647492899", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-979624634600533647492899", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a" ] + }, + "id" : "urn:uuid:42b9389b-b3f3-4ec6-9682-c486c8f687ed" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-18T16:14:25.966Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T12:02:20.966Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-997376934378864120316064", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-997376934378864120316064", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef" ] + }, + "id" : "urn:uuid:5bae4d98-551e-4e88-95e8-702a37015cbc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-05T01:58:16.976Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T17:22:34.976Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-778417256952070533897994", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-778417256952070533897994", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b" ] + }, + "id" : "urn:uuid:dcf1a4c6-1896-4e46-a8f4-b8014ffcb38b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-28T00:14:39.986Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T12:16:22.986Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-727416471376683509173911", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-727416471376683509173911", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f" ] + }, + "id" : "urn:uuid:3aa887de-37aa-420d-bcfe-34bc17aa9fd8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-22T17:45:06.997Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T22:47:50.997Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:94db8f20-0325-419b-b878-abba77600dde", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-917458811175547581413130", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-917458811175547581413130", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, + "id" : "urn:uuid:ec9910b5-76da-4511-abbc-0096dba8efc0" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 43, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 23, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 62, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-452377419123617272895044", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-452377419123617272895044", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b" ] + }, + "id" : "urn:uuid:3e32f3fd-9b5c-4cc9-aed9-47cce33483e8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-24T05:09:09.018Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T19:10:19.018Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-363987851397975039975040", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-363987851397975039975040", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f" ] + }, + "id" : "urn:uuid:452311af-c411-46bd-aec5-5a922f533bbf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-15T17:37:09.030Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T15:52:03.030Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-674257824448392468659757", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-674257824448392468659757", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766" ] + }, + "id" : "urn:uuid:d013c6b9-2bb6-46d3-af29-fce3605b9851" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-06T19:13:06.040Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T17:10:09.040Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:94db8f20-0325-419b-b878-abba77600dde", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:94db8f20-0325-419b-b878-abba77600dde", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:94db8f20-0325-419b-b878-abba77600dde" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-176894796017384432968058", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:94db8f20-0325-419b-b878-abba77600dde", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-176894796017384432968058", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:94db8f20-0325-419b-b878-abba77600dde" ] + }, + "id" : "urn:uuid:23bb8ce1-68cb-4540-9cc3-e45955d968c5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-08-30T22:45:53.050Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T21:34:10.050Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-395677041114278987722823", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-395677041114278987722823", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388" ] + }, + "id" : "urn:uuid:8b3504ce-39ba-4660-9245-af78136fc855" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-29T16:08:04.069Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T00:19:05.069Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-384168253502800145446404", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-384168253502800145446404", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777" ] + }, + "id" : "urn:uuid:385e0a0f-5cf2-4fdd-a109-cff78a67a298" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-07T23:16:34.081Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T13:48:15.081Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-977035438385933794871487", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-977035438385933794871487", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1" ] + }, + "id" : "urn:uuid:10333897-c28f-43ef-b100-03a242730b18" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-21T08:07:50.092Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T15:55:24.092Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-926549768639546290790836", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-926549768639546290790836", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c" ] + }, + "id" : "urn:uuid:2f2a1e9e-9859-435f-a94a-b03f8c410688" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-02-18T03:20:50.103Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T07:40:33.103Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-637645160968354168683549", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-637645160968354168683549", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0" ] + }, + "id" : "urn:uuid:7ec103a8-9a7d-4eaa-8af1-b2f0a226e74a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-26T09:15:54.115Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T15:43:34.115Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-025936840989138507538451", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-025936840989138507538451", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f" ] + }, + "id" : "urn:uuid:c2de6a3a-caa5-41f7-8228-1d841269b5f6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-06-30T13:03:30.128Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T14:59:58.128Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "electric", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "childItems" : [ { + "catenaXId" : "urn:uuid:8924be06-7765-4106-b7d0-b2d73c67c382", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d17d3101-f0f3-4cce-8369-9341a029b05c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:668e9794-48a0-4b56-b529-fbece2b969ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:091146d7-7b56-49f3-9975-5200b69eeb71", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3cf5524d-de2c-492d-ac51-a7c0e3d7a0b6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18900eaa-f611-4073-a945-1250f1e2fccf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0046f124-07d5-4ec3-802e-9760172ff872", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:40f7d165-0b3e-4426-8957-60444ae24d4d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7b121950-7ab3-4599-adc2-91a900802d8a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5be08213-a8bb-4a53-b2e4-f5baa98bdf4b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12952a32-02c1-4b91-9eee-73fcbff69b4c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57db2076-0208-45d5-9aed-532ca5548bcc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:661cc9b7-a1cc-4516-9529-312209f57719", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8712137e-06fd-4c17-b855-0690dcb8f9d6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4764aeff-9f7d-4a44-9a2b-1e01a11fb6ab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e7c78143-b5a8-4d42-8b10-f68b368cbc54", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:faa41e43-798b-4c10-86ce-bb0456261d99", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7f3d6e0-5ae3-42ac-a9bb-be8a28df6f7a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4eb9cad5-9013-44bc-ac73-59d54158ed31", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:787aa97a-05ac-4f56-aa6d-a9646e8e5daf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:67c9205b-39c9-4870-a9a2-68a085d6fd84", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8600785d-f554-4845-aba9-b0a8ba48b8be", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:322f4b0f-b0f6-4722-a777-55e437784ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:696fa8af-52b3-4e67-918f-660fd93d8d26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:43d4cbcb-2a07-4a3b-acd9-d9de7575ba41", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ccba0f39-9b7a-44d2-adac-b5999b334fc6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:26b2c4dc-93e6-4403-b97c-84fbd43cf148", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "YI-39", + "key" : "manufacturerPartId" + }, { + "value" : "OMBRXWFANESCKGORE", + "key" : "partInstanceId" + }, { + "value" : "OMBRXWFANESCKGORE", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2017-05-10T13:18:38.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "partTypeInformation" : { + "manufacturerPartId" : "YI-39", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMBRXWFANESCKGORE", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "YI-39", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_fully_electric.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Fully Electric" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, + "id" : "urn:uuid:21902a25-b351-4229-b6af-fae7cc501399" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 72, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 73, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 16, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 64, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 4, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 1, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 61, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 10, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 2, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 14, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8924be06-7765-4106-b7d0-b2d73c67c382", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8924be06-7765-4106-b7d0-b2d73c67c382" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-133705099756252198850158", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8924be06-7765-4106-b7d0-b2d73c67c382", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-133705099756252198850158", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8924be06-7765-4106-b7d0-b2d73c67c382" ] + }, + "id" : "urn:uuid:ddca9fd4-a221-4b04-a32c-bbd36f7cf526" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9", + "childItems" : [ { + "catenaXId" : "urn:uuid:a14f80cc-6783-40d0-8bc7-73535b163c76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-518607415582534652062043", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-518607415582534652062043", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9" ] + }, + "id" : "urn:uuid:76ee1cf1-25d7-42a7-9f8e-ba79669a82c5" + } ] + }, { + "catenaXId" : "urn:uuid:a14f80cc-6783-40d0-8bc7-73535b163c76", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a14f80cc-6783-40d0-8bc7-73535b163c76" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-055649316913185476112401", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a14f80cc-6783-40d0-8bc7-73535b163c76", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-055649316913185476112401", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a14f80cc-6783-40d0-8bc7-73535b163c76" ] + }, + "id" : "urn:uuid:fc16a24a-e728-4943-9e0b-d32bb479e537" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab", + "childItems" : [ { + "catenaXId" : "urn:uuid:da89bb14-f11b-4bdd-9519-c7fb075e3952", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-734427907837352065531635", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-734427907837352065531635", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab" ] + }, + "id" : "urn:uuid:eb416b28-f7f3-4c22-9147-272129d795c4" + } ] + }, { + "catenaXId" : "urn:uuid:da89bb14-f11b-4bdd-9519-c7fb075e3952", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:da89bb14-f11b-4bdd-9519-c7fb075e3952" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-398305683805156238998186", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:da89bb14-f11b-4bdd-9519-c7fb075e3952", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-398305683805156238998186", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:da89bb14-f11b-4bdd-9519-c7fb075e3952" ] + }, + "id" : "urn:uuid:340ffdc4-c32d-4bdc-afbd-5364e4712335" + } ] + }, { + "catenaXId" : "urn:uuid:d17d3101-f0f3-4cce-8369-9341a029b05c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d17d3101-f0f3-4cce-8369-9341a029b05c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-569989841226328032259490", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d17d3101-f0f3-4cce-8369-9341a029b05c", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-569989841226328032259490", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d17d3101-f0f3-4cce-8369-9341a029b05c" ] + }, + "id" : "urn:uuid:875d6033-2a80-45e5-b84f-4748d588b2eb" + } ] + }, { + "catenaXId" : "urn:uuid:668e9794-48a0-4b56-b529-fbece2b969ac", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:668e9794-48a0-4b56-b529-fbece2b969ac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-103842237264784666327241", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:668e9794-48a0-4b56-b529-fbece2b969ac", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-103842237264784666327241", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:668e9794-48a0-4b56-b529-fbece2b969ac" ] + }, + "id" : "urn:uuid:421ca3da-5d51-4f0f-91e5-f19c7136e464" + } ] + }, { + "catenaXId" : "urn:uuid:091146d7-7b56-49f3-9975-5200b69eeb71", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:091146d7-7b56-49f3-9975-5200b69eeb71" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-785019281335487908229583", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:091146d7-7b56-49f3-9975-5200b69eeb71", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-785019281335487908229583", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:091146d7-7b56-49f3-9975-5200b69eeb71" ] + }, + "id" : "urn:uuid:be6244f7-32f9-4928-bbd8-b91d990b0ed1" + } ] + }, { + "catenaXId" : "urn:uuid:3cf5524d-de2c-492d-ac51-a7c0e3d7a0b6", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3cf5524d-de2c-492d-ac51-a7c0e3d7a0b6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-104473343692314470051339", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3cf5524d-de2c-492d-ac51-a7c0e3d7a0b6", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-104473343692314470051339", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3cf5524d-de2c-492d-ac51-a7c0e3d7a0b6" ] + }, + "id" : "urn:uuid:08526fac-c5ed-43a3-87f8-9a51b72c9bfb" + } ] + }, { + "catenaXId" : "urn:uuid:18900eaa-f611-4073-a945-1250f1e2fccf", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18900eaa-f611-4073-a945-1250f1e2fccf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-697932414960159170356102", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18900eaa-f611-4073-a945-1250f1e2fccf", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-697932414960159170356102", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:18900eaa-f611-4073-a945-1250f1e2fccf" ] + }, + "id" : "urn:uuid:e02fd29f-b7bc-4200-93af-b0a024e34b86" + } ] + }, { + "catenaXId" : "urn:uuid:0046f124-07d5-4ec3-802e-9760172ff872", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0046f124-07d5-4ec3-802e-9760172ff872" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-719765031607606916200222", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0046f124-07d5-4ec3-802e-9760172ff872", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-719765031607606916200222", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0046f124-07d5-4ec3-802e-9760172ff872" ] + }, + "id" : "urn:uuid:52c54078-66b6-4a2f-9f1c-7521755d30eb" + } ] + }, { + "catenaXId" : "urn:uuid:40f7d165-0b3e-4426-8957-60444ae24d4d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:40f7d165-0b3e-4426-8957-60444ae24d4d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-137161678564484770804975", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:40f7d165-0b3e-4426-8957-60444ae24d4d", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-137161678564484770804975", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:40f7d165-0b3e-4426-8957-60444ae24d4d" ] + }, + "id" : "urn:uuid:8264f910-2997-4b96-a7b0-589bdc3e5138" + } ] + }, { + "catenaXId" : "urn:uuid:7b121950-7ab3-4599-adc2-91a900802d8a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7b121950-7ab3-4599-adc2-91a900802d8a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-401238279156050695848026", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7b121950-7ab3-4599-adc2-91a900802d8a", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-401238279156050695848026", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7b121950-7ab3-4599-adc2-91a900802d8a" ] + }, + "id" : "urn:uuid:f2a3d7d1-2638-4335-9ff9-7a01d9d9af9f" + } ] + }, { + "catenaXId" : "urn:uuid:5be08213-a8bb-4a53-b2e4-f5baa98bdf4b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5be08213-a8bb-4a53-b2e4-f5baa98bdf4b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-511225698453304810509725", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5be08213-a8bb-4a53-b2e4-f5baa98bdf4b", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-511225698453304810509725", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5be08213-a8bb-4a53-b2e4-f5baa98bdf4b" ] + }, + "id" : "urn:uuid:e5307ed1-d491-4152-871b-aca67d8e3653" + } ] + }, { + "catenaXId" : "urn:uuid:12952a32-02c1-4b91-9eee-73fcbff69b4c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:12952a32-02c1-4b91-9eee-73fcbff69b4c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-204782364821645078209856", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:12952a32-02c1-4b91-9eee-73fcbff69b4c", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-204782364821645078209856", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:12952a32-02c1-4b91-9eee-73fcbff69b4c" ] + }, + "id" : "urn:uuid:c2fa32e0-2147-4d1b-9c25-c70aa903e28e" + } ] + }, { + "catenaXId" : "urn:uuid:57db2076-0208-45d5-9aed-532ca5548bcc", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57db2076-0208-45d5-9aed-532ca5548bcc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-262929360508045569973068", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57db2076-0208-45d5-9aed-532ca5548bcc", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-262929360508045569973068", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:57db2076-0208-45d5-9aed-532ca5548bcc" ] + }, + "id" : "urn:uuid:cf5f3790-9511-4830-8390-6e8b5a5afcf6" + } ] + }, { + "catenaXId" : "urn:uuid:661cc9b7-a1cc-4516-9529-312209f57719", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:661cc9b7-a1cc-4516-9529-312209f57719" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-118402346655252394841687", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:661cc9b7-a1cc-4516-9529-312209f57719", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-118402346655252394841687", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:661cc9b7-a1cc-4516-9529-312209f57719" ] + }, + "id" : "urn:uuid:4df97e89-ed29-4187-a6e1-a581ba65e9fe" + } ] + }, { + "catenaXId" : "urn:uuid:8712137e-06fd-4c17-b855-0690dcb8f9d6", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8712137e-06fd-4c17-b855-0690dcb8f9d6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-064063195827321688740316", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8712137e-06fd-4c17-b855-0690dcb8f9d6", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-064063195827321688740316", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8712137e-06fd-4c17-b855-0690dcb8f9d6" ] + }, + "id" : "urn:uuid:a604cace-2fe7-49de-b176-cadcf0c1a384" + } ] + }, { + "catenaXId" : "urn:uuid:4764aeff-9f7d-4a44-9a2b-1e01a11fb6ab", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4764aeff-9f7d-4a44-9a2b-1e01a11fb6ab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-561415515151897492427870", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4764aeff-9f7d-4a44-9a2b-1e01a11fb6ab", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-561415515151897492427870", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4764aeff-9f7d-4a44-9a2b-1e01a11fb6ab" ] + }, + "id" : "urn:uuid:dc1a1427-e17b-446b-b4bb-717b1e0394aa" + } ] + }, { + "catenaXId" : "urn:uuid:e7c78143-b5a8-4d42-8b10-f68b368cbc54", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e7c78143-b5a8-4d42-8b10-f68b368cbc54" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-417254214949902332461979", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e7c78143-b5a8-4d42-8b10-f68b368cbc54", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-417254214949902332461979", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e7c78143-b5a8-4d42-8b10-f68b368cbc54" ] + }, + "id" : "urn:uuid:d9bfe8f1-9ec0-4f40-a465-503e0fb18a18" + } ] + }, { + "catenaXId" : "urn:uuid:faa41e43-798b-4c10-86ce-bb0456261d99", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:faa41e43-798b-4c10-86ce-bb0456261d99" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-827673122019404509394975", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:faa41e43-798b-4c10-86ce-bb0456261d99", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-827673122019404509394975", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:faa41e43-798b-4c10-86ce-bb0456261d99" ] + }, + "id" : "urn:uuid:e13b3cd3-2a3b-48a1-9d02-892793ff003f" + } ] + }, { + "catenaXId" : "urn:uuid:c7f3d6e0-5ae3-42ac-a9bb-be8a28df6f7a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c7f3d6e0-5ae3-42ac-a9bb-be8a28df6f7a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-185561968006036412882553", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c7f3d6e0-5ae3-42ac-a9bb-be8a28df6f7a", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-185561968006036412882553", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c7f3d6e0-5ae3-42ac-a9bb-be8a28df6f7a" ] + }, + "id" : "urn:uuid:ce4b5537-8cb9-49a9-9e85-955e6eb1972d" + } ] + }, { + "catenaXId" : "urn:uuid:4eb9cad5-9013-44bc-ac73-59d54158ed31", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4eb9cad5-9013-44bc-ac73-59d54158ed31" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-887623347729252431945069", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4eb9cad5-9013-44bc-ac73-59d54158ed31", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-887623347729252431945069", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4eb9cad5-9013-44bc-ac73-59d54158ed31" ] + }, + "id" : "urn:uuid:c0fc8b46-7bfa-4b27-b6fa-d6a6cc1088b3" + } ] + }, { + "catenaXId" : "urn:uuid:787aa97a-05ac-4f56-aa6d-a9646e8e5daf", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:787aa97a-05ac-4f56-aa6d-a9646e8e5daf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-544649392873825230970883", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:787aa97a-05ac-4f56-aa6d-a9646e8e5daf", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-544649392873825230970883", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:787aa97a-05ac-4f56-aa6d-a9646e8e5daf" ] + }, + "id" : "urn:uuid:78a24d9a-f879-45fa-90c3-3d881ed78eeb" + } ] + }, { + "catenaXId" : "urn:uuid:67c9205b-39c9-4870-a9a2-68a085d6fd84", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:67c9205b-39c9-4870-a9a2-68a085d6fd84" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-146232258083101538776453", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:67c9205b-39c9-4870-a9a2-68a085d6fd84", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-146232258083101538776453", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:67c9205b-39c9-4870-a9a2-68a085d6fd84" ] + }, + "id" : "urn:uuid:dbf19421-f2b4-4400-886d-df62be27c033" + } ] + }, { + "catenaXId" : "urn:uuid:8600785d-f554-4845-aba9-b0a8ba48b8be", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8600785d-f554-4845-aba9-b0a8ba48b8be" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-244790156528973907749361", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8600785d-f554-4845-aba9-b0a8ba48b8be", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-244790156528973907749361", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8600785d-f554-4845-aba9-b0a8ba48b8be" ] + }, + "id" : "urn:uuid:0249554b-eb2c-4ac4-8c95-127a91e0df3b" + } ] + }, { + "catenaXId" : "urn:uuid:322f4b0f-b0f6-4722-a777-55e437784ede", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:322f4b0f-b0f6-4722-a777-55e437784ede" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-061996706540868125889173", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:322f4b0f-b0f6-4722-a777-55e437784ede", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-061996706540868125889173", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:322f4b0f-b0f6-4722-a777-55e437784ede" ] + }, + "id" : "urn:uuid:20e67e84-b692-41fe-b6a8-23cdd8e0b702" + } ] + }, { + "catenaXId" : "urn:uuid:696fa8af-52b3-4e67-918f-660fd93d8d26", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:696fa8af-52b3-4e67-918f-660fd93d8d26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-603574641342424940799759", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:696fa8af-52b3-4e67-918f-660fd93d8d26", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-603574641342424940799759", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:696fa8af-52b3-4e67-918f-660fd93d8d26" ] + }, + "id" : "urn:uuid:d2c04a6f-fd6f-4ebb-82c1-46c013cd73af" + } ] + }, { + "catenaXId" : "urn:uuid:43d4cbcb-2a07-4a3b-acd9-d9de7575ba41", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:43d4cbcb-2a07-4a3b-acd9-d9de7575ba41" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-526301679837319456984552", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:43d4cbcb-2a07-4a3b-acd9-d9de7575ba41", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-526301679837319456984552", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:43d4cbcb-2a07-4a3b-acd9-d9de7575ba41" ] + }, + "id" : "urn:uuid:772b4127-60af-49d8-8672-1ce7b9879c39" + } ] + }, { + "catenaXId" : "urn:uuid:ccba0f39-9b7a-44d2-adac-b5999b334fc6", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ccba0f39-9b7a-44d2-adac-b5999b334fc6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-252781037334016436716227", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ccba0f39-9b7a-44d2-adac-b5999b334fc6", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-252781037334016436716227", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ccba0f39-9b7a-44d2-adac-b5999b334fc6" ] + }, + "id" : "urn:uuid:cc9d3686-0356-4f65-9191-9ceab0ea5a57" + } ] + }, { + "catenaXId" : "urn:uuid:26b2c4dc-93e6-4403-b97c-84fbd43cf148", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:26b2c4dc-93e6-4403-b97c-84fbd43cf148" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-298880028448324192234728", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:26b2c4dc-93e6-4403-b97c-84fbd43cf148", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-298880028448324192234728", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:26b2c4dc-93e6-4403-b97c-84fbd43cf148" ] + }, + "id" : "urn:uuid:5c656e53-956a-466d-af58-75b045a6c3cd" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", + "childItems" : [ { + "catenaXId" : "urn:uuid:abac29c4-d3b3-4a43-96ea-cabb18a93478", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ffff3b41-c96f-4a1f-ae07-2f81a36b99b4", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-701724054973803374552819", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-701724054973803374552819", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-701724054973803374552819", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78" ] + }, + "id" : "urn:uuid:99018ca4-1470-4501-8006-a8a211ef14c4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 11, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 42, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 22, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:abac29c4-d3b3-4a43-96ea-cabb18a93478", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:abac29c4-d3b3-4a43-96ea-cabb18a93478" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "90414B2-22", + "key" : "manufacturerPartId" + }, { + "value" : "NO-048510334122414747132091", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:abac29c4-d3b3-4a43-96ea-cabb18a93478", + "partTypeInformation" : { + "manufacturerPartId" : "90414B2-22", + "customerPartId" : "90414B2-22", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 61, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 12, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff", + "childItems" : [ { + "catenaXId" : "urn:uuid:14baee0d-7daf-40b9-a99c-7bd2ee06c98d", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "45229B1-88", + "key" : "manufacturerPartId" + }, { + "value" : "NO-254044281525355978574795", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff", + "partTypeInformation" : { + "manufacturerPartId" : "45229B1-88", + "customerPartId" : "45229B1-88", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-254044281525355978574795", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45229B1-88", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff" ] + }, + "id" : "urn:uuid:07cbb279-6a6a-47b1-9273-fe5c75cb1735" + } ] + }, { + "catenaXId" : "urn:uuid:14baee0d-7daf-40b9-a99c-7bd2ee06c98d", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:14baee0d-7daf-40b9-a99c-7bd2ee06c98d" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "43903M9-18", + "key" : "manufacturerPartId" + }, { + "value" : "NO-522010099133355862905761", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:14baee0d-7daf-40b9-a99c-7bd2ee06c98d", + "partTypeInformation" : { + "manufacturerPartId" : "43903M9-18", + "customerPartId" : "43903M9-18", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 61, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 56, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ffff3b41-c96f-4a1f-ae07-2f81a36b99b4", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:ffff3b41-c96f-4a1f-ae07-2f81a36b99b4", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ffff3b41-c96f-4a1f-ae07-2f81a36b99b4" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "51761I0-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-258711578918839856829463", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ffff3b41-c96f-4a1f-ae07-2f81a36b99b4", + "partTypeInformation" : { + "manufacturerPartId" : "51761I0-61", + "customerPartId" : "51761I0-61", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013", + "childItems" : [ { + "catenaXId" : "urn:uuid:8a2fff9c-9e05-4fdd-a709-be98f75897f6", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d07ef48a-039a-44c6-8441-6b1445e86850", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "30561D1-65", + "key" : "manufacturerPartId" + }, { + "value" : "NO-118871824223929640058975", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013", + "partTypeInformation" : { + "manufacturerPartId" : "30561D1-65", + "customerPartId" : "30561D1-65", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-118871824223929640058975", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "30561D1-65", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013" ] + }, + "id" : "urn:uuid:2b333ac3-1ed2-4bad-b46b-b4d1ec9a8f7e" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 43, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8a2fff9c-9e05-4fdd-a709-be98f75897f6", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8a2fff9c-9e05-4fdd-a709-be98f75897f6" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "30912I6-00", + "key" : "manufacturerPartId" + }, { + "value" : "NO-507963885444258283451987", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8a2fff9c-9e05-4fdd-a709-be98f75897f6", + "partTypeInformation" : { + "manufacturerPartId" : "30912I6-00", + "customerPartId" : "30912I6-00", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 76, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 62, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f", + "childItems" : [ { + "catenaXId" : "urn:uuid:3dae49ed-2135-40df-b2cc-9e898637a58c", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "71549L2-78", + "key" : "manufacturerPartId" + }, { + "value" : "NO-798663002275114858170067", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f", + "partTypeInformation" : { + "manufacturerPartId" : "71549L2-78", + "customerPartId" : "71549L2-78", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-798663002275114858170067", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "71549L2-78", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f" ] + }, + "id" : "urn:uuid:2baa2ddc-5b45-4b47-88ff-e3eada7c2360" + } ] + }, { + "catenaXId" : "urn:uuid:3dae49ed-2135-40df-b2cc-9e898637a58c", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3dae49ed-2135-40df-b2cc-9e898637a58c" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "59584G8-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-216648392558670003146851", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3dae49ed-2135-40df-b2cc-9e898637a58c", + "partTypeInformation" : { + "manufacturerPartId" : "59584G8-35", + "customerPartId" : "59584G8-35", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 35, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 89, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d07ef48a-039a-44c6-8441-6b1445e86850", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d07ef48a-039a-44c6-8441-6b1445e86850" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "92645Q9-91", + "key" : "manufacturerPartId" + }, { + "value" : "NO-528510927061873107172591", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d07ef48a-039a-44c6-8441-6b1445e86850", + "partTypeInformation" : { + "manufacturerPartId" : "92645Q9-91", + "customerPartId" : "92645Q9-91", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-528510927061873107172591", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "92645Q9-91", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d07ef48a-039a-44c6-8441-6b1445e86850" ] + }, + "id" : "urn:uuid:df5dc463-c402-4117-9dc8-56c25031384a" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 70, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 7, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "childItems" : [ { + "catenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-268868146160160418632573", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-268868146160160418632573", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d" ] + }, + "id" : "urn:uuid:9c63d3b6-192c-49fa-882b-420a4838c411" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 49, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 25, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 36, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-513851394618187316283266", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-513851394618187316283266", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, + "id" : "urn:uuid:69a0961a-d640-489c-8493-ff234caeb0db" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 89, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 79, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 16, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-353468965634238071803021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-353468965634238071803021", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af" ] + }, + "id" : "urn:uuid:bd22264e-0f9b-4ede-9167-43fa23b20f28" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-11-07T11:20:37.304Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T20:37:13.305Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-965699607267242442279548", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-965699607267242442279548", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0" ] + }, + "id" : "urn:uuid:ae1899b2-500b-4e37-a9e0-2f922b8a734e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-17T16:30:48.315Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T10:46:32.315Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-410975553977415452422602", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-410975553977415452422602", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222" ] + }, + "id" : "urn:uuid:4742731c-4f75-4048-b3db-d2ab41436617" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-08-25T07:30:38.325Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T16:23:03.325Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-632447769733075563737207", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-632447769733075563737207", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b" ] + }, + "id" : "urn:uuid:de838e84-d354-45bb-aa19-75a896a8d3d2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-08T20:09:15.334Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T14:22:19.334Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-280449051966836591963508", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-280449051966836591963508", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa" ] + }, + "id" : "urn:uuid:46af8a24-a7f5-4881-82d5-7a876a252453" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-20T15:32:16.344Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T10:42:35.344Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-400203519147580808336728", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-400203519147580808336728", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0" ] + }, + "id" : "urn:uuid:62b3d32e-8ac6-49b0-a562-f3560a850402" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-08-19T04:55:38.354Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T12:40:06.355Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-330967058940640151543172", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-330967058940640151543172", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b" ] + }, + "id" : "urn:uuid:f442eac9-7123-4aa6-96dc-14847eb10d0c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-03-14T13:07:00.365Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T19:01:53.365Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-685921743551592613599383", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-685921743551592613599383", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845" ] + }, + "id" : "urn:uuid:68ff6ce7-4430-4301-abb0-02e258205ff6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-09T08:36:18.376Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T21:49:07.376Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-872422871070025075042809", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-872422871070025075042809", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426" ] + }, + "id" : "urn:uuid:1bb5c2b4-aee7-4d05-9142-231476721455" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-12-03T08:00:16.388Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T03:39:01.388Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-505725480361572203512468", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-505725480361572203512468", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c" ] + }, + "id" : "urn:uuid:b71b9a2a-9aa9-4ccf-8822-3f0b4f0aec0b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-23T10:16:00.398Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T03:25:40.398Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-833994052796796714916987", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-833994052796796714916987", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, + "id" : "urn:uuid:92fe841e-87aa-44a7-a9d0-c7323b8091a9" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 75, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 20, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 23, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-733803777434546787021915", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-733803777434546787021915", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1" ] + }, + "id" : "urn:uuid:6daf773c-8bf7-427d-9433-303da903165c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-12-22T01:43:35.419Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T05:45:15.419Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-229669612554057877077732", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-229669612554057877077732", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3" ] + }, + "id" : "urn:uuid:8474c811-d663-4f5a-a672-e51f548632b7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-27T17:57:36.429Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T18:30:26.429Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-709597456609047536762008", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-709597456609047536762008", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024" ] + }, + "id" : "urn:uuid:96743dbe-720a-478e-a022-2351e7b71210" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-12T16:18:03.439Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T16:32:19.439Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-971189052712752934325809", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-971189052712752934325809", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476" ] + }, + "id" : "urn:uuid:9d8c0fba-6f25-4c41-be3a-c582dc33861a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-19T06:50:26.448Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T13:54:45.448Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-401353030062628855084935", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-401353030062628855084935", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae" ] + }, + "id" : "urn:uuid:83d44608-6ae2-43c7-a19a-9bf210ddbd9e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-02-23T01:16:36.458Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T16:38:01.458Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-942384674085496878859723", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-942384674085496878859723", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2" ] + }, + "id" : "urn:uuid:469e9a51-3c1b-4035-b42b-bafec5c8a9d5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-06T00:33:33.468Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T15:33:30.468Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-305675624853142553390523", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-305675624853142553390523", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403" ] + }, + "id" : "urn:uuid:dc1519de-c3a4-4750-80a7-87fc8592b7dd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-04T05:32:58.477Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T16:48:04.477Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-367413783074181875710040", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-367413783074181875710040", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d" ] + }, + "id" : "urn:uuid:734e3a2e-5a3a-4ba9-91d3-932de67a562e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-02-08T13:38:19.487Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T09:25:15.487Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-613273926954790968597608", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-613273926954790968597608", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16" ] + }, + "id" : "urn:uuid:9aaa0813-c664-4d9a-bb69-360f4bcd0000" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-26T09:17:30.496Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T22:39:52.496Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-242649170853275212721574", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-242649170853275212721574", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043" ] + }, + "id" : "urn:uuid:3e329ca3-7c74-4369-beaa-4309b5071409" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-19T05:34:55.505Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T18:47:21.506Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-882133201550469472483791", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-882133201550469472483791", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, + "id" : "urn:uuid:bb8a8532-dda3-44c1-9f32-0e016c8a645d" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 70, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 35, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 47, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-092672795434485755207174", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-092672795434485755207174", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78" ] + }, + "id" : "urn:uuid:f4f21b53-616c-47ae-805a-013118d82f62" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-01T20:52:09.525Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T22:47:17.525Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-840451352744571293826735", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-840451352744571293826735", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e" ] + }, + "id" : "urn:uuid:69acd24e-2500-4ee4-8bed-98525c23292c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-27T19:09:24.536Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T19:35:49.536Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-439069289152904977405673", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-439069289152904977405673", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e" ] + }, + "id" : "urn:uuid:35cbfabe-c648-4b30-8949-37d288fadb27" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-12-23T04:33:25.546Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T09:21:03.546Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-467410539822549345768276", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-467410539822549345768276", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099" ] + }, + "id" : "urn:uuid:1addf60f-a774-4629-98fc-78a4175fe4ec" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-17T05:04:11.556Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T02:20:36.556Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-367667429005728094740709", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-367667429005728094740709", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c" ] + }, + "id" : "urn:uuid:f7344986-eaf2-4e65-a38b-aa550be4e159" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-22T20:18:16.565Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T14:39:27.565Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-197188529160436751596537", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-197188529160436751596537", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465" ] + }, + "id" : "urn:uuid:62ff8cb4-ebc1-481c-9295-afd61cf1e681" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-12-06T07:58:51.575Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T20:30:16.575Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-570616439083141783105097", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-570616439083141783105097", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b" ] + }, + "id" : "urn:uuid:a48a5f98-e8da-4786-bd7f-7a5d0f63d420" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-21T06:22:02.584Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T16:40:23.584Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-688718297549227864096386", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-688718297549227864096386", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558" ] + }, + "id" : "urn:uuid:d4158973-b9b6-4310-8042-483f58f438d1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-12T07:42:14.596Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T02:25:49.596Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-704467460794106726402552", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-704467460794106726402552", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719" ] + }, + "id" : "urn:uuid:30a2999d-96a6-4b88-a8d4-55a460ff783a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-05-03T16:44:11.605Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T16:00:28.605Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-455382139476173509400021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-455382139476173509400021", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe" ] + }, + "id" : "urn:uuid:2400b55a-e75d-4caf-9403-46a4cfff2cc0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-27T01:18:22.614Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T16:18:33.614Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-052036441040133550347426", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-052036441040133550347426", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, + "id" : "urn:uuid:7da7b354-15e2-4fc8-92a6-7270a587fdc7" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 56, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 48, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 29, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-730807384077960780883680", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-730807384077960780883680", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3" ] + }, + "id" : "urn:uuid:2308eda0-d9cc-4835-a902-57aa85c6288d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-07T13:54:41.633Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T18:31:21.633Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-680943369468046328237310", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-680943369468046328237310", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd" ] + }, + "id" : "urn:uuid:6bf78068-711c-4a64-86a9-762772c7d0a5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-22T17:58:52.643Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T19:56:46.643Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-970283619098515461065457", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-970283619098515461065457", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc" ] + }, + "id" : "urn:uuid:63ad7f41-91d1-4b17-b0d0-624617ed2868" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-23T05:56:54.653Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T17:28:57.653Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-252958255251835189626828", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-252958255251835189626828", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6" ] + }, + "id" : "urn:uuid:4b446923-fd50-41fb-b621-09b0420751f4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-25T17:00:00.662Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T10:33:25.662Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-546956979025765825210174", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-546956979025765825210174", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46" ] + }, + "id" : "urn:uuid:013da2fc-6b35-47c7-91f1-4e281ae122f6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-21T00:18:20.673Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T07:27:43.673Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-716267331326145010486116", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-716267331326145010486116", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013" ] + }, + "id" : "urn:uuid:1f729e13-eda4-439f-abb4-a97aaa52d3ad" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-06T03:53:59.684Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T04:57:05.684Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-247372361889887582815770", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-247372361889887582815770", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b" ] + }, + "id" : "urn:uuid:8422de17-2b30-41e4-b98b-d82cb34604af" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-05-08T22:46:03.706Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T00:18:16.706Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-060784401832452504998526", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-060784401832452504998526", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1" ] + }, + "id" : "urn:uuid:81d0101c-0c10-44ed-bbd0-5ccb73096678" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-06-28T03:12:00.719Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T07:57:48.719Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-322989965357802943826434", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-322989965357802943826434", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724" ] + }, + "id" : "urn:uuid:c3e4a154-fee0-4557-a2de-243778145b47" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-10-23T16:07:37.731Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T20:32:37.731Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-569201102253533882303436", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-569201102253533882303436", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce" ] + }, + "id" : "urn:uuid:e554b520-6cf3-4140-9858-8b587f58814c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-19T19:00:54.743Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T22:59:32.743Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-981653561743389435531037", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-981653561743389435531037", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, + "id" : "urn:uuid:5235218b-dc13-433f-9ce1-7345ebfb69f6" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 14, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 20, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 84, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-287986169229079386228718", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-287986169229079386228718", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12" ] + }, + "id" : "urn:uuid:e73a1218-f813-4053-8042-f93e46524382" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-01-28T13:53:05.770Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T23:04:31.770Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-851428094361954946151893", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-851428094361954946151893", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852" ] + }, + "id" : "urn:uuid:cfe576b4-23b0-4243-9b11-4dd4d57deeed" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-14T06:22:53.782Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T08:44:15.782Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-198881913397493715273401", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-198881913397493715273401", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af" ] + }, + "id" : "urn:uuid:8416a626-65a2-4ab2-9055-aaf4d37f1ac9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-08T03:52:48.792Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T15:46:23.792Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-708978237536212920088636", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-708978237536212920088636", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade" ] + }, + "id" : "urn:uuid:be47dcb6-1f56-4d60-944e-a106bd1b1cc8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-14T05:40:50.802Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T23:00:11.802Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-570562308851947339195390", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-570562308851947339195390", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8" ] + }, + "id" : "urn:uuid:318875cc-05bf-4582-8dab-0bd83e1ab821" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-30T05:37:24.811Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T15:28:57.811Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-548461119864194874824728", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-548461119864194874824728", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d" ] + }, + "id" : "urn:uuid:846d21b2-761c-477f-8e93-fde851ea91d7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-03-07T14:21:06.821Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T06:44:02.821Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-495629039229168503980575", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-495629039229168503980575", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2" ] + }, + "id" : "urn:uuid:78b044fc-914b-496b-baa1-7ed829be437f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-02T11:52:14.830Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T07:54:44.830Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-226179551291991028739300", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-226179551291991028739300", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e" ] + }, + "id" : "urn:uuid:bea5184c-358d-45ae-b599-2ea7c954cfec" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-31T17:28:53.840Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T03:18:40.840Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-051990587420376256257034", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-051990587420376256257034", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282" ] + }, + "id" : "urn:uuid:205ec137-353b-4b23-9482-322a8fe39358" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-12-21T19:55:28.849Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T00:15:09.849Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-558652565691664266861187", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-558652565691664266861187", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45" ] + }, + "id" : "urn:uuid:1c527dc2-f8d4-4257-9019-1ebc3732fceb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-01-15T10:02:10.858Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T14:57:02.858Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-691855878549775315724547", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-691855878549775315724547", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, + "id" : "urn:uuid:680b90cd-5dbd-4ed3-8374-a6bd7a429fcf" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 51, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 41, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 85, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-543871597924029564969934", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-543871597924029564969934", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497" ] + }, + "id" : "urn:uuid:f59a3e37-0154-4a94-8310-ad42104c93af" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-17T22:42:58.876Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T12:45:24.876Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-963990949160149610057566", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-963990949160149610057566", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5" ] + }, + "id" : "urn:uuid:4aea7f5c-85d3-42ed-acf9-ca499f62cc3b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-07T01:23:33.886Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T15:54:48.886Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-816613244238753048414160", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-816613244238753048414160", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8" ] + }, + "id" : "urn:uuid:7950833e-e8ff-4bf9-b6c4-deff815f42d1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-11-05T17:20:20.895Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T06:18:18.895Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-071698633981780684119265", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-071698633981780684119265", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84" ] + }, + "id" : "urn:uuid:47f4d07b-c30f-4a09-9eea-e78596a6ae94" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-25T10:38:04.904Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T13:39:07.904Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-378692852015537389518945", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-378692852015537389518945", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e" ] + }, + "id" : "urn:uuid:d2c91a8a-8f5b-47fe-8fdd-d4036fb9cc56" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-24T23:35:59.913Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T22:32:50.913Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-479355117188137904838419", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-479355117188137904838419", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160" ] + }, + "id" : "urn:uuid:b2891540-f4b7-44a3-9c42-8682b7d3c2a1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-07-01T04:36:31.922Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T00:55:57.922Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-760437899000166629059531", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-760437899000166629059531", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b" ] + }, + "id" : "urn:uuid:6834a26e-ec76-4158-8c2f-465504412ead" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-05-24T05:45:14.931Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T03:45:14.931Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-927900263002474347388737", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-927900263002474347388737", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad" ] + }, + "id" : "urn:uuid:15a97767-015a-48b0-a34c-1ade6fe54e24" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-10-17T00:15:19.939Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T18:50:50.939Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-818516591548547480227128", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-818516591548547480227128", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91" ] + }, + "id" : "urn:uuid:8d7aa516-5268-4c17-b2d4-fa8816bd8d6f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-09T06:49:13.949Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T10:40:11.949Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-768060632800584210559593", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-768060632800584210559593", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11" ] + }, + "id" : "urn:uuid:54e3bca7-4332-4e7b-8b85-93d9cd234fc4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-16T14:06:00.958Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T17:05:17.958Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "electric", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "childItems" : [ { + "catenaXId" : "urn:uuid:d1cca4e9-4cdd-46ae-a609-37aadabd5e88", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e75c34f3-d342-47f9-89a9-a86e51b757cc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fccbd46b-36aa-4a9d-9c54-5bcdfaee60d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8f479623-98c9-4375-910c-1c41124d27d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a6fcd120-5d1d-4262-ab0a-7927e118d1b6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ad5a606f-e65b-4b56-a822-2854f49045eb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9132682c-304a-444e-bc3d-0771722e0d7c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:303eacbb-cd85-430a-8754-ec86997ebe63", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e6d3af8b-f85b-4353-b79a-2ab56ad908ec", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c9a05628-d711-4929-b353-f62e7b96ef87", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:78ca3a8f-80e0-4455-bef0-52b279428a52", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2f29abca-0e24-47e4-891d-86a4fe452424", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:49959f48-848c-4ed3-ab4a-d37eb4d5902d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a6cfd67-37dd-4306-9883-946e2a685446", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2a01a085-1f75-49a4-a5ad-5d9a707b7949", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6b85b137-39a2-44fe-b65e-bb4d911ffdcd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8ec907cd-e38e-4491-af52-5eacccdfb6fd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:536453ae-d4ae-4b84-8ce5-dba91a0761e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7c09fa59-b540-479b-826f-a2cedc94d65b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5a19279c-9a4d-4831-835e-44f49aad1b5a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9d9a5f35-159d-4a06-91ba-dd641012cd24", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dc3e2003-f524-414b-bc98-4ed7748be4f1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d3b1ba5d-f1d1-4fa7-8f4b-34f650886aba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5417bc75-ac1c-4eb7-9ee9-1b58179f8cd7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:49f022b4-8a24-4ce2-8f4b-b588b9854019", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:20b8a583-9218-4771-8b5f-bc1bce36e819", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00f10d14-bfc2-4695-91eb-e5a9f2bb29f1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "SD-32", + "key" : "manufacturerPartId" + }, { + "value" : "OMCMLVZNPKECFOOBD", + "key" : "partInstanceId" + }, { + "value" : "OMCMLVZNPKECFOOBD", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-02-26T18:00:56.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "partTypeInformation" : { + "manufacturerPartId" : "SD-32", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCMLVZNPKECFOOBD", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "SD-32", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_fully_electric.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Fully Electric" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, + "id" : "urn:uuid:c6541452-35a9-4142-8184-582a61f0d276" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 61, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 45, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 68, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 21, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 84, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 85, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 25, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 55, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 18, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 35, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d1cca4e9-4cdd-46ae-a609-37aadabd5e88", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d1cca4e9-4cdd-46ae-a609-37aadabd5e88" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-727587493141832199751491", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d1cca4e9-4cdd-46ae-a609-37aadabd5e88", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-727587493141832199751491", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d1cca4e9-4cdd-46ae-a609-37aadabd5e88" ] + }, + "id" : "urn:uuid:10e30e25-0170-4bc6-b155-9c1bf03a818c" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2", + "childItems" : [ { + "catenaXId" : "urn:uuid:ea5510e8-4b25-4c48-b3f4-6be402539e07", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-530568312431651820862872", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-530568312431651820862872", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2" ] + }, + "id" : "urn:uuid:934f341a-0c84-46d6-b48f-1a9722f0b080" + } ] + }, { + "catenaXId" : "urn:uuid:ea5510e8-4b25-4c48-b3f4-6be402539e07", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ea5510e8-4b25-4c48-b3f4-6be402539e07" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-666433042672308757793875", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ea5510e8-4b25-4c48-b3f4-6be402539e07", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-666433042672308757793875", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ea5510e8-4b25-4c48-b3f4-6be402539e07" ] + }, + "id" : "urn:uuid:a2b0cdb8-43c1-439f-91b2-808d1c646834" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c", + "childItems" : [ { + "catenaXId" : "urn:uuid:3feea8a2-5636-409c-9759-5cbacdec1fd4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-501120361770748083052003", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-501120361770748083052003", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c" ] + }, + "id" : "urn:uuid:2b953a6a-0cb1-4eec-ab64-9f089d336d02" + } ] + }, { + "catenaXId" : "urn:uuid:3feea8a2-5636-409c-9759-5cbacdec1fd4", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3feea8a2-5636-409c-9759-5cbacdec1fd4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-377523713082177525379664", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3feea8a2-5636-409c-9759-5cbacdec1fd4", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-377523713082177525379664", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3feea8a2-5636-409c-9759-5cbacdec1fd4" ] + }, + "id" : "urn:uuid:4946cf08-6a67-4261-ab5b-3257c4db1c97" + } ] + }, { + "catenaXId" : "urn:uuid:e75c34f3-d342-47f9-89a9-a86e51b757cc", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e75c34f3-d342-47f9-89a9-a86e51b757cc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-591992431454206736331332", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e75c34f3-d342-47f9-89a9-a86e51b757cc", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-591992431454206736331332", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e75c34f3-d342-47f9-89a9-a86e51b757cc" ] + }, + "id" : "urn:uuid:c76b7251-d1e0-407d-9913-023e1619a76b" + } ] + }, { + "catenaXId" : "urn:uuid:fccbd46b-36aa-4a9d-9c54-5bcdfaee60d8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fccbd46b-36aa-4a9d-9c54-5bcdfaee60d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-618487618524161837587039", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fccbd46b-36aa-4a9d-9c54-5bcdfaee60d8", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-618487618524161837587039", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fccbd46b-36aa-4a9d-9c54-5bcdfaee60d8" ] + }, + "id" : "urn:uuid:dc55f5c2-16b6-42b1-bc81-0279531e761f" + } ] + }, { + "catenaXId" : "urn:uuid:8f479623-98c9-4375-910c-1c41124d27d3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8f479623-98c9-4375-910c-1c41124d27d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-014129634641885548501610", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f479623-98c9-4375-910c-1c41124d27d3", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-014129634641885548501610", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8f479623-98c9-4375-910c-1c41124d27d3" ] + }, + "id" : "urn:uuid:2a7066f9-e48f-4cf9-85a3-5e44d3626dde" + } ] + }, { + "catenaXId" : "urn:uuid:a6fcd120-5d1d-4262-ab0a-7927e118d1b6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a6fcd120-5d1d-4262-ab0a-7927e118d1b6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-433137570357869888219987", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a6fcd120-5d1d-4262-ab0a-7927e118d1b6", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-433137570357869888219987", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a6fcd120-5d1d-4262-ab0a-7927e118d1b6" ] + }, + "id" : "urn:uuid:0dbf22cb-0ff1-43ee-b26b-e31b95f75c14" + } ] + }, { + "catenaXId" : "urn:uuid:ad5a606f-e65b-4b56-a822-2854f49045eb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ad5a606f-e65b-4b56-a822-2854f49045eb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-958351193794824057810895", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ad5a606f-e65b-4b56-a822-2854f49045eb", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-958351193794824057810895", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ad5a606f-e65b-4b56-a822-2854f49045eb" ] + }, + "id" : "urn:uuid:9954ee63-dd43-40d8-b318-1f3eaea53bfa" + } ] + }, { + "catenaXId" : "urn:uuid:9132682c-304a-444e-bc3d-0771722e0d7c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9132682c-304a-444e-bc3d-0771722e0d7c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-568345698710532946207795", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9132682c-304a-444e-bc3d-0771722e0d7c", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-568345698710532946207795", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9132682c-304a-444e-bc3d-0771722e0d7c" ] + }, + "id" : "urn:uuid:9869fb0a-139a-442b-b885-e2368c88ab82" + } ] + }, { + "catenaXId" : "urn:uuid:303eacbb-cd85-430a-8754-ec86997ebe63", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:303eacbb-cd85-430a-8754-ec86997ebe63" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-212128370667762825403375", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:303eacbb-cd85-430a-8754-ec86997ebe63", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-212128370667762825403375", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:303eacbb-cd85-430a-8754-ec86997ebe63" ] + }, + "id" : "urn:uuid:17fef496-eddc-494b-a724-e82ba0b14f14" + } ] + }, { + "catenaXId" : "urn:uuid:e6d3af8b-f85b-4353-b79a-2ab56ad908ec", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e6d3af8b-f85b-4353-b79a-2ab56ad908ec" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-214331728014623701830065", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e6d3af8b-f85b-4353-b79a-2ab56ad908ec", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-214331728014623701830065", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e6d3af8b-f85b-4353-b79a-2ab56ad908ec" ] + }, + "id" : "urn:uuid:65fa67a7-a0b3-4222-bcd4-000ffdb6be06" + } ] + }, { + "catenaXId" : "urn:uuid:c9a05628-d711-4929-b353-f62e7b96ef87", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c9a05628-d711-4929-b353-f62e7b96ef87" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-306550520931346008383986", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c9a05628-d711-4929-b353-f62e7b96ef87", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-306550520931346008383986", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c9a05628-d711-4929-b353-f62e7b96ef87" ] + }, + "id" : "urn:uuid:abdf6988-35a1-4162-9fd4-07d919c2723b" + } ] + }, { + "catenaXId" : "urn:uuid:78ca3a8f-80e0-4455-bef0-52b279428a52", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:78ca3a8f-80e0-4455-bef0-52b279428a52" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-110553384771067991411026", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:78ca3a8f-80e0-4455-bef0-52b279428a52", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-110553384771067991411026", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:78ca3a8f-80e0-4455-bef0-52b279428a52" ] + }, + "id" : "urn:uuid:50f5c335-d9a9-42f4-8a23-f2815a332cdf" + } ] + }, { + "catenaXId" : "urn:uuid:2f29abca-0e24-47e4-891d-86a4fe452424", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2f29abca-0e24-47e4-891d-86a4fe452424" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-794175719564154782304482", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2f29abca-0e24-47e4-891d-86a4fe452424", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-794175719564154782304482", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2f29abca-0e24-47e4-891d-86a4fe452424" ] + }, + "id" : "urn:uuid:cabc7737-8a76-443e-8a35-1b2ac403df3b" + } ] + }, { + "catenaXId" : "urn:uuid:49959f48-848c-4ed3-ab4a-d37eb4d5902d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:49959f48-848c-4ed3-ab4a-d37eb4d5902d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-380339029828871226205285", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:49959f48-848c-4ed3-ab4a-d37eb4d5902d", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-380339029828871226205285", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:49959f48-848c-4ed3-ab4a-d37eb4d5902d" ] + }, + "id" : "urn:uuid:fd0a7340-3f27-40ed-94b4-0e3dd206d61f" + } ] + }, { + "catenaXId" : "urn:uuid:0a6cfd67-37dd-4306-9883-946e2a685446", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a6cfd67-37dd-4306-9883-946e2a685446" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-510565898459772276765374", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a6cfd67-37dd-4306-9883-946e2a685446", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-510565898459772276765374", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a6cfd67-37dd-4306-9883-946e2a685446" ] + }, + "id" : "urn:uuid:1eb6c224-ee2d-4ac6-9dbd-35e7108d6ed4" + } ] + }, { + "catenaXId" : "urn:uuid:2a01a085-1f75-49a4-a5ad-5d9a707b7949", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2a01a085-1f75-49a4-a5ad-5d9a707b7949" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-959302078155250142027699", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2a01a085-1f75-49a4-a5ad-5d9a707b7949", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-959302078155250142027699", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2a01a085-1f75-49a4-a5ad-5d9a707b7949" ] + }, + "id" : "urn:uuid:7d460a36-e332-407e-beed-8e75fd0e1852" + } ] + }, { + "catenaXId" : "urn:uuid:6b85b137-39a2-44fe-b65e-bb4d911ffdcd", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6b85b137-39a2-44fe-b65e-bb4d911ffdcd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-747349812533638722246079", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6b85b137-39a2-44fe-b65e-bb4d911ffdcd", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-747349812533638722246079", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6b85b137-39a2-44fe-b65e-bb4d911ffdcd" ] + }, + "id" : "urn:uuid:40deb4b8-5de1-40ac-9943-d8271ac94f7e" + } ] + }, { + "catenaXId" : "urn:uuid:8ec907cd-e38e-4491-af52-5eacccdfb6fd", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8ec907cd-e38e-4491-af52-5eacccdfb6fd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-629964220571716619287990", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8ec907cd-e38e-4491-af52-5eacccdfb6fd", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-629964220571716619287990", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8ec907cd-e38e-4491-af52-5eacccdfb6fd" ] + }, + "id" : "urn:uuid:b09facfb-0e2f-4d56-b715-2670837e1a09" + } ] + }, { + "catenaXId" : "urn:uuid:536453ae-d4ae-4b84-8ce5-dba91a0761e0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:536453ae-d4ae-4b84-8ce5-dba91a0761e0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-625518742568107998183364", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:536453ae-d4ae-4b84-8ce5-dba91a0761e0", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-625518742568107998183364", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:536453ae-d4ae-4b84-8ce5-dba91a0761e0" ] + }, + "id" : "urn:uuid:0f5dc833-b0ed-46cd-b1de-95181e341853" + } ] + }, { + "catenaXId" : "urn:uuid:7c09fa59-b540-479b-826f-a2cedc94d65b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7c09fa59-b540-479b-826f-a2cedc94d65b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-360216490128591623998850", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7c09fa59-b540-479b-826f-a2cedc94d65b", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-360216490128591623998850", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7c09fa59-b540-479b-826f-a2cedc94d65b" ] + }, + "id" : "urn:uuid:9ba8dd26-0ff2-46b9-8b97-834ee9db9828" + } ] + }, { + "catenaXId" : "urn:uuid:5a19279c-9a4d-4831-835e-44f49aad1b5a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5a19279c-9a4d-4831-835e-44f49aad1b5a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-627183991575958450756711", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5a19279c-9a4d-4831-835e-44f49aad1b5a", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-627183991575958450756711", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5a19279c-9a4d-4831-835e-44f49aad1b5a" ] + }, + "id" : "urn:uuid:b22dc60e-863b-4798-8edd-d7fd1df3bf06" + } ] + }, { + "catenaXId" : "urn:uuid:9d9a5f35-159d-4a06-91ba-dd641012cd24", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9d9a5f35-159d-4a06-91ba-dd641012cd24" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-179877661125419889806847", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9d9a5f35-159d-4a06-91ba-dd641012cd24", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-179877661125419889806847", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9d9a5f35-159d-4a06-91ba-dd641012cd24" ] + }, + "id" : "urn:uuid:b506bfea-d9d5-42ea-8279-979545bac035" + } ] + }, { + "catenaXId" : "urn:uuid:dc3e2003-f524-414b-bc98-4ed7748be4f1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dc3e2003-f524-414b-bc98-4ed7748be4f1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-273908766082650221781171", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dc3e2003-f524-414b-bc98-4ed7748be4f1", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-273908766082650221781171", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:dc3e2003-f524-414b-bc98-4ed7748be4f1" ] + }, + "id" : "urn:uuid:55758160-04e1-453e-8c04-cfe74e076450" + } ] + }, { + "catenaXId" : "urn:uuid:d3b1ba5d-f1d1-4fa7-8f4b-34f650886aba", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d3b1ba5d-f1d1-4fa7-8f4b-34f650886aba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-511010059272724569801200", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d3b1ba5d-f1d1-4fa7-8f4b-34f650886aba", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-511010059272724569801200", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d3b1ba5d-f1d1-4fa7-8f4b-34f650886aba" ] + }, + "id" : "urn:uuid:5d7d7ddd-2351-418c-a640-9883e5d30e15" + } ] + }, { + "catenaXId" : "urn:uuid:5417bc75-ac1c-4eb7-9ee9-1b58179f8cd7", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5417bc75-ac1c-4eb7-9ee9-1b58179f8cd7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-190584362682655196356135", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5417bc75-ac1c-4eb7-9ee9-1b58179f8cd7", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-190584362682655196356135", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5417bc75-ac1c-4eb7-9ee9-1b58179f8cd7" ] + }, + "id" : "urn:uuid:9bd6d21a-2cca-4f02-a3ba-7250c45f4965" + } ] + }, { + "catenaXId" : "urn:uuid:49f022b4-8a24-4ce2-8f4b-b588b9854019", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:49f022b4-8a24-4ce2-8f4b-b588b9854019" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-095873530000667718577407", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:49f022b4-8a24-4ce2-8f4b-b588b9854019", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-095873530000667718577407", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:49f022b4-8a24-4ce2-8f4b-b588b9854019" ] + }, + "id" : "urn:uuid:ed3bbc6d-a04a-4f49-acfd-da9b57c16a56" + } ] + }, { + "catenaXId" : "urn:uuid:20b8a583-9218-4771-8b5f-bc1bce36e819", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:20b8a583-9218-4771-8b5f-bc1bce36e819" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-822204434571861293130864", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:20b8a583-9218-4771-8b5f-bc1bce36e819", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-822204434571861293130864", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:20b8a583-9218-4771-8b5f-bc1bce36e819" ] + }, + "id" : "urn:uuid:056e1fe5-520f-4413-b0eb-f2991413615e" + } ] + }, { + "catenaXId" : "urn:uuid:00f10d14-bfc2-4695-91eb-e5a9f2bb29f1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00f10d14-bfc2-4695-91eb-e5a9f2bb29f1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-748607609151514130318297", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00f10d14-bfc2-4695-91eb-e5a9f2bb29f1", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-748607609151514130318297", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:00f10d14-bfc2-4695-91eb-e5a9f2bb29f1" ] + }, + "id" : "urn:uuid:f8fe67b9-e4d4-4783-bbe8-2c2c276daa35" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", + "childItems" : [ { + "catenaXId" : "urn:uuid:963ca520-719a-4c95-be79-966b913775b4", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cf30ad22-2484-4af7-b707-369fdf2c74e2", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-995064017678282523737502", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-995064017678282523737502", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-995064017678282523737502", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23" ] + }, + "id" : "urn:uuid:aebc4c6f-8d2d-42f4-869a-4b587764c30e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 85, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 57, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 68, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:963ca520-719a-4c95-be79-966b913775b4", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:963ca520-719a-4c95-be79-966b913775b4" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "36650W3-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-735283681316737573897750", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:963ca520-719a-4c95-be79-966b913775b4", + "partTypeInformation" : { + "manufacturerPartId" : "36650W3-09", + "customerPartId" : "36650W3-09", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 31, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 8, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955", + "childItems" : [ { + "catenaXId" : "urn:uuid:8df160ae-9b28-4195-85e1-1126b2742fd7", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "44505R2-05", + "key" : "manufacturerPartId" + }, { + "value" : "NO-122276513033474502691367", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955", + "partTypeInformation" : { + "manufacturerPartId" : "44505R2-05", + "customerPartId" : "44505R2-05", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-122276513033474502691367", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "44505R2-05", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955" ] + }, + "id" : "urn:uuid:5261f6aa-5bc4-433e-84cc-6d17cd53999b" + } ] + }, { + "catenaXId" : "urn:uuid:8df160ae-9b28-4195-85e1-1126b2742fd7", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8df160ae-9b28-4195-85e1-1126b2742fd7" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "83060H8-89", + "key" : "manufacturerPartId" + }, { + "value" : "NO-856794511692926284169004", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8df160ae-9b28-4195-85e1-1126b2742fd7", + "partTypeInformation" : { + "manufacturerPartId" : "83060H8-89", + "customerPartId" : "83060H8-89", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 24, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 67, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cf30ad22-2484-4af7-b707-369fdf2c74e2", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:cf30ad22-2484-4af7-b707-369fdf2c74e2", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cf30ad22-2484-4af7-b707-369fdf2c74e2" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "68515W7-77", + "key" : "manufacturerPartId" + }, { + "value" : "NO-481959536883874655837180", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cf30ad22-2484-4af7-b707-369fdf2c74e2", + "partTypeInformation" : { + "manufacturerPartId" : "68515W7-77", + "customerPartId" : "68515W7-77", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac", + "childItems" : [ { + "catenaXId" : "urn:uuid:be4c2c4a-cd5b-4e25-943f-63ba8b0722f8", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7ed5f4ad-ec0f-486a-9332-2d6f9b5e847b", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "66647L9-94", + "key" : "manufacturerPartId" + }, { + "value" : "NO-486058974050701339511223", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac", + "partTypeInformation" : { + "manufacturerPartId" : "66647L9-94", + "customerPartId" : "66647L9-94", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-486058974050701339511223", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "66647L9-94", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac" ] + }, + "id" : "urn:uuid:ab5ab2f5-9973-4c87-aa9d-7d90a80dd930" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 75, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:be4c2c4a-cd5b-4e25-943f-63ba8b0722f8", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be4c2c4a-cd5b-4e25-943f-63ba8b0722f8" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "71144T5-38", + "key" : "manufacturerPartId" + }, { + "value" : "NO-311859796179269728065813", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be4c2c4a-cd5b-4e25-943f-63ba8b0722f8", + "partTypeInformation" : { + "manufacturerPartId" : "71144T5-38", + "customerPartId" : "71144T5-38", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 23, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 57, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5", + "childItems" : [ { + "catenaXId" : "urn:uuid:36766c01-1b22-4b2e-946f-c7ce17cde8ff", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "89154T2-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-313834182808529191592169", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5", + "partTypeInformation" : { + "manufacturerPartId" : "89154T2-61", + "customerPartId" : "89154T2-61", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-313834182808529191592169", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "89154T2-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5" ] + }, + "id" : "urn:uuid:209bc33b-9848-4378-bbe8-1fb6edbbd38e" + } ] + }, { + "catenaXId" : "urn:uuid:36766c01-1b22-4b2e-946f-c7ce17cde8ff", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:36766c01-1b22-4b2e-946f-c7ce17cde8ff" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "69012N0-96", + "key" : "manufacturerPartId" + }, { + "value" : "NO-456444931580333906813421", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:36766c01-1b22-4b2e-946f-c7ce17cde8ff", + "partTypeInformation" : { + "manufacturerPartId" : "69012N0-96", + "customerPartId" : "69012N0-96", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 21, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 66, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:7ed5f4ad-ec0f-486a-9332-2d6f9b5e847b", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7ed5f4ad-ec0f-486a-9332-2d6f9b5e847b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "58095Q7-86", + "key" : "manufacturerPartId" + }, { + "value" : "NO-944264055072618748475729", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7ed5f4ad-ec0f-486a-9332-2d6f9b5e847b", + "partTypeInformation" : { + "manufacturerPartId" : "58095Q7-86", + "customerPartId" : "58095Q7-86", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-944264055072618748475729", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58095Q7-86", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7ed5f4ad-ec0f-486a-9332-2d6f9b5e847b" ] + }, + "id" : "urn:uuid:90dcae19-a5f3-46f7-ae2e-612e54f0ac22" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 43, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 52, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "childItems" : [ { + "catenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-770402769690939533511866", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-770402769690939533511866", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60" ] + }, + "id" : "urn:uuid:fdbea7f2-7e80-4dd0-8e8b-820b213239f0" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 40, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 56, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 43, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-863447484390791915886827", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-863447484390791915886827", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, + "id" : "urn:uuid:a084c382-900f-4d79-8830-98d9d888a4a2" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 53, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 45, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 26, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-636342926416447871412944", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-636342926416447871412944", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616" ] + }, + "id" : "urn:uuid:763643ef-cce1-4242-a00c-dfb656630c1f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-31T05:15:04.139Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T07:45:18.139Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-043757923348227550554408", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-043757923348227550554408", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518" ] + }, + "id" : "urn:uuid:21aa4cec-2470-432f-a687-2cb26d0338b9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-01T20:34:38.150Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T03:43:05.150Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-835160509285744138134686", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-835160509285744138134686", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40" ] + }, + "id" : "urn:uuid:127aec84-777b-4f6a-9fc3-c5ab6d60ed6c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-22T15:55:13.160Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T18:58:05.160Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-724858530159113212908884", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-724858530159113212908884", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda" ] + }, + "id" : "urn:uuid:224d1b91-b2ca-46c2-bfca-e81c887d278c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-12-11T07:59:06.170Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T13:52:13.170Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-755073753597284807518178", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-755073753597284807518178", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25" ] + }, + "id" : "urn:uuid:01aae667-bc64-4cee-a6f6-2d67fe619e6e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-07T22:58:55.180Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T00:26:53.180Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-142919720286633824414392", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-142919720286633824414392", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7" ] + }, + "id" : "urn:uuid:69b7a2e2-9c72-49bb-adb1-bb3b4407d0f8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-21T00:01:26.190Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T20:48:04.190Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-183850578753868314444344", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-183850578753868314444344", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206" ] + }, + "id" : "urn:uuid:c675385a-a8b3-4f9e-9d9c-cc21381196d4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-16T21:45:02.201Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T14:46:56.201Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-942518591294088604353306", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-942518591294088604353306", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e" ] + }, + "id" : "urn:uuid:87b9f70c-f5d3-4fa7-8da4-1bd676d2b0aa" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-05-26T22:42:47.212Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T03:48:07.212Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-845266150363401174444062", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-845266150363401174444062", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe" ] + }, + "id" : "urn:uuid:e140637a-b5b8-4152-8c9a-0059d2c9adb9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-11T14:13:21.223Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T16:27:30.223Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-462264839238673172450699", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-462264839238673172450699", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5" ] + }, + "id" : "urn:uuid:509c050e-f4fe-4849-b36e-e6466dbc91ce" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-05-20T17:35:16.233Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T01:13:37.233Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-216521817114818474961926", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-216521817114818474961926", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, + "id" : "urn:uuid:043723dd-811f-4445-95f1-c27e92a447f0" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 32, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 48, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 84, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-555330311809371918012950", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-555330311809371918012950", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf" ] + }, + "id" : "urn:uuid:e4c86129-16bb-4af3-8e91-9471ab6e2fee" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-08-04T14:00:44.253Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T01:25:54.253Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-728318498180696664704776", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-728318498180696664704776", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06" ] + }, + "id" : "urn:uuid:623dbe30-2d74-4e76-bcb4-7343af37df03" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-20T03:32:15.263Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T23:55:48.263Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-198762185414154967368412", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-198762185414154967368412", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29" ] + }, + "id" : "urn:uuid:c20edbe8-10d5-453a-bcd9-2b6f468ed2f7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-02T23:39:29.272Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T01:16:35.272Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-858050366708420144844016", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-858050366708420144844016", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e" ] + }, + "id" : "urn:uuid:2e1f5968-20c8-435e-aaaf-caf5824edd5a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-20T05:01:03.281Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T06:05:51.281Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-249155119743497801748384", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-249155119743497801748384", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b" ] + }, + "id" : "urn:uuid:acd18f19-4f1e-4529-907f-486cb8873d2d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-08-25T12:22:27.289Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T06:16:28.289Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-790476655135647558631560", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-790476655135647558631560", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50" ] + }, + "id" : "urn:uuid:7b726cf9-4676-456e-8cdb-1a36509866c5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-13T09:30:00.298Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T12:39:42.298Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-475554680727963260238832", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-475554680727963260238832", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c" ] + }, + "id" : "urn:uuid:889b4885-ac9e-4160-a637-f75df90a2e54" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-08T09:29:40.308Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T02:46:28.308Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-820010327021604194959775", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-820010327021604194959775", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4" ] + }, + "id" : "urn:uuid:591f43d2-e682-4dda-8499-737faa29f849" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-01T17:58:54.317Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T11:40:06.317Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-085852741493397421402059", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-085852741493397421402059", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c" ] + }, + "id" : "urn:uuid:d8f4c2b8-2e16-4d0e-a4e2-8ae2047f85de" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-21T08:05:32.326Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T17:46:58.326Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-502768766217776141715061", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-502768766217776141715061", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410" ] + }, + "id" : "urn:uuid:34846170-a052-4f0c-8f31-d476bea41dbb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-26T21:56:25.335Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T07:08:02.335Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-611883378675049524029237", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-611883378675049524029237", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, + "id" : "urn:uuid:095c7554-a23a-41a2-8a60-f5396ea218d8" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 75, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 70, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 54, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-329958455424706311618906", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-329958455424706311618906", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c" ] + }, + "id" : "urn:uuid:f3bdb545-84d2-4c98-bd25-dbd95b848ddc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-20T18:46:21.353Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T21:19:32.353Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-277761771767643959416906", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-277761771767643959416906", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa" ] + }, + "id" : "urn:uuid:bb592a9f-19ac-4a50-a56b-c2463b950d0a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-12T12:41:15.363Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T14:18:35.363Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-324668899891957520841956", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-324668899891957520841956", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1" ] + }, + "id" : "urn:uuid:7e8bd596-51cd-4391-a61d-312c080a9786" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-25T00:03:33.372Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T02:18:58.372Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-947659601896894499720515", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-947659601896894499720515", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0" ] + }, + "id" : "urn:uuid:289c1cc1-98a9-4574-9c2c-bef36cc3eedb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-09T22:35:18.381Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T20:41:29.381Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-389042652665055973774128", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-389042652665055973774128", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe" ] + }, + "id" : "urn:uuid:5ea35f84-60de-4c04-a929-e04eea298fc8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-12T18:49:42.390Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T18:04:02.390Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-923889313836569660966996", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-923889313836569660966996", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d" ] + }, + "id" : "urn:uuid:9278a00c-b054-4833-a5cd-140d301a7dcd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-05-09T00:24:52.398Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T18:31:00.398Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-800682037116417730821098", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-800682037116417730821098", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb" ] + }, + "id" : "urn:uuid:a670c5b1-19a9-4425-b274-697e567f2c1a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-15T16:09:02.408Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T12:45:55.408Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-281769823792887528624036", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-281769823792887528624036", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b" ] + }, + "id" : "urn:uuid:abebc967-8f1d-47f8-afc3-ea13075d5bf0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-14T15:51:42.416Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T08:50:14.416Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-080761476107193119745852", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-080761476107193119745852", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b" ] + }, + "id" : "urn:uuid:3c2d8a51-2604-42fe-ad8e-0d52116f96eb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-19T21:45:36.425Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T06:49:35.425Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-405033895563919074996884", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-405033895563919074996884", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e" ] + }, + "id" : "urn:uuid:92ad760d-b222-44a2-a63f-b56a18122ad2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-23T15:54:51.434Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T05:41:05.434Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:347fa75b-a32b-4579-8844-938065c04854", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-576969955638667079523392", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-576969955638667079523392", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, + "id" : "urn:uuid:3ca02135-7839-4315-8a1f-e3233c85c19c" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 53, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 62, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 56, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-927634320269895318242855", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-927634320269895318242855", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010" ] + }, + "id" : "urn:uuid:7eeb11c2-ab1c-4c39-927e-6987c475c6c1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-20T17:22:09.452Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T22:44:21.452Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-086612095685252072271202", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-086612095685252072271202", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b" ] + }, + "id" : "urn:uuid:50b934fd-6537-4919-b192-a1c6a2fdf8aa" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-27T01:45:23.461Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T16:41:32.461Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-503697834475415448435320", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-503697834475415448435320", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96" ] + }, + "id" : "urn:uuid:801b53d5-3223-4d34-bd32-1041443ed29c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-02T02:06:45.470Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T19:04:29.470Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-555531610056926736781818", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-555531610056926736781818", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205" ] + }, + "id" : "urn:uuid:4999132d-fbfd-4563-8d24-e4e0893e77ea" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-30T02:31:23.478Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T04:05:44.478Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-136981335212690374052905", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-136981335212690374052905", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1" ] + }, + "id" : "urn:uuid:2358e92d-ad94-40ff-be44-9b06d03f6d3a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-01-19T17:07:50.487Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T05:57:30.487Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-344879675405021640046070", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-344879675405021640046070", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d" ] + }, + "id" : "urn:uuid:25a9894a-d402-49bf-bd4a-4835e13a46d0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-21T09:29:11.496Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T20:09:32.496Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:347fa75b-a32b-4579-8844-938065c04854", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:347fa75b-a32b-4579-8844-938065c04854", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:347fa75b-a32b-4579-8844-938065c04854" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-152214188675095239650591", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:347fa75b-a32b-4579-8844-938065c04854", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-152214188675095239650591", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:347fa75b-a32b-4579-8844-938065c04854" ] + }, + "id" : "urn:uuid:dc5f21be-9f92-4e6b-b2e0-21d71d87faa5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-15T10:28:13.507Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T01:34:54.507Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-797267246891484072167117", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-797267246891484072167117", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd" ] + }, + "id" : "urn:uuid:ea11bd75-de75-4b56-a2ca-125049992280" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-26T22:08:53.516Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T14:41:52.516Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-708325001825007630563668", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-708325001825007630563668", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc" ] + }, + "id" : "urn:uuid:aa4f49c5-b5f7-446c-8e68-09c17c052128" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-11T08:24:47.526Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T07:19:33.526Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-443604307376748348062509", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-443604307376748348062509", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8" ] + }, + "id" : "urn:uuid:e4820e81-a7e5-4f74-8110-8d0d26cd4408" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-01T18:03:46.535Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T09:16:13.535Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-136191276103478324273836", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-136191276103478324273836", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, + "id" : "urn:uuid:fa213c39-5f8f-4129-8bd9-9513735c2841" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 20, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 56, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 17, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-504442519923230613838310", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-504442519923230613838310", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc" ] + }, + "id" : "urn:uuid:0189cd69-39a7-4ff3-8da8-89b2f1d6af88" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-05-08T04:36:06.555Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T02:23:55.555Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-245758613360823991181413", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-245758613360823991181413", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1" ] + }, + "id" : "urn:uuid:51075a8d-361e-4286-9a2b-b0f5f11d1c42" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-01T01:24:27.566Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T03:43:00.566Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-319101721437169999664131", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-319101721437169999664131", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee" ] + }, + "id" : "urn:uuid:9de3ea65-aa3d-43e7-972a-5818fb0ae999" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-06-08T09:52:37.575Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T19:56:45.575Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-337837560762062268408133", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-337837560762062268408133", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74" ] + }, + "id" : "urn:uuid:542f346e-f627-49cf-8ef2-cdab34383e75" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-12T10:17:39.587Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T08:07:36.587Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-370234291933842710538696", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-370234291933842710538696", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db" ] + }, + "id" : "urn:uuid:a5592387-e912-44bd-9a0f-7626da79f5c0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-14T20:27:07.597Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T11:25:41.597Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-432595221120328882929045", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-432595221120328882929045", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9" ] + }, + "id" : "urn:uuid:6952b3c7-0ba9-4cf3-915d-5bff1c2ae93b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-12-15T13:11:14.608Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T14:17:49.608Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-076084333624268299214590", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-076084333624268299214590", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa" ] + }, + "id" : "urn:uuid:4f166559-5cb9-4220-a4f9-2ed123f129db" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-02T02:46:19.619Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T19:25:02.619Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-643220407195859839630537", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-643220407195859839630537", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a" ] + }, + "id" : "urn:uuid:c3bc145a-4442-48d6-b98a-866884a81416" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-09-28T07:24:56.629Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T05:11:45.629Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-915236894336423936547240", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-915236894336423936547240", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4" ] + }, + "id" : "urn:uuid:22fa8ddc-7ab5-432d-9e82-c2eafb2ae607" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-06T08:00:31.639Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T03:52:38.639Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-904055862078136079429133", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-904055862078136079429133", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213" ] + }, + "id" : "urn:uuid:75a0c8da-ecb4-4035-9ff6-333b3c8d7c8e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-27T21:29:16.648Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T15:18:27.648Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-303721070516322917280942", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-303721070516322917280942", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, + "id" : "urn:uuid:c358fbfe-39a1-4dfe-9488-93644327cebb" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 14, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 14, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 74, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-340821902176840274867393", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-340821902176840274867393", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d" ] + }, + "id" : "urn:uuid:8aae0e34-c8ce-4d86-8dde-2476894faf72" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-26T18:24:37.669Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T05:13:36.669Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-068241218645379802183284", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-068241218645379802183284", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44" ] + }, + "id" : "urn:uuid:1892d8c9-4134-4164-a60a-aa6d7580030e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-12T17:04:06.679Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T01:15:36.679Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-703777514737502038277103", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-703777514737502038277103", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714" ] + }, + "id" : "urn:uuid:baf8fa12-e67f-427e-8ffa-58daa3d70e3f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-13T15:06:26.689Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T09:40:57.690Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-054767144685229098593181", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-054767144685229098593181", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412" ] + }, + "id" : "urn:uuid:5e6aaa38-4eaf-4d3b-ba1b-4f175be06225" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-14T13:09:00.702Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T05:44:52.702Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-223017472716449624321610", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-223017472716449624321610", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613" ] + }, + "id" : "urn:uuid:de868280-a2c2-4272-ab94-b3e718e99dfa" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-29T13:56:59.711Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T14:51:25.711Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-561907082755368069197517", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-561907082755368069197517", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d" ] + }, + "id" : "urn:uuid:fdd0703f-f8ee-4db4-a989-0bcdbe088b53" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-10T07:34:47.722Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T22:22:03.722Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-003759578410902003263210", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-003759578410902003263210", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c" ] + }, + "id" : "urn:uuid:604b06f5-2e55-4de9-8d51-1577a50206d5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-07T03:00:17.731Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T01:56:26.731Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-403934091679359917919132", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-403934091679359917919132", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42" ] + }, + "id" : "urn:uuid:617bb6e1-3d07-4f71-b5c8-691c05d44e76" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-11T12:53:10.742Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T09:39:36.742Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-795135435533964155906695", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-795135435533964155906695", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113" ] + }, + "id" : "urn:uuid:a8c9ebf4-2cc3-4521-8e74-61a9bba525f2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-30T13:24:20.751Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T13:59:24.751Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-000883071760242739865604", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-000883071760242739865604", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d" ] + }, + "id" : "urn:uuid:582f1cfa-f000-45f3-9dc2-4861abea35ea" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-12-21T01:29:12.760Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T09:41:36.760Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "electric", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "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 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "childItems" : [ { + "catenaXId" : "urn:uuid:443fdeee-3d6c-4bc8-81f1-007b1c5aba03", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3852c430-b854-47aa-a0ed-139cae6abbf8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ba5e8a8f-f786-4fc8-8f1a-8041797faf1a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa11babe-ad64-451d-938a-1ce3cfcb3bf1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:954db4a3-4bec-4a06-b0d0-205bca2da20b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:15e8dbeb-e744-4ed1-87a3-4a539dc5274b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f49b210f-c19c-4bfa-85e0-857c263789d0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:61e08f18-48bb-479d-9514-c7bea8cecf42", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f3b0a665-7c8c-4c79-9ba5-beb9c3f138df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04a4d57c-6c36-4aa4-b97b-ae8b633d67f1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e71885f8-497c-4e37-af9f-6315c9f9817a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dbc69f18-2ec1-43a9-b2df-02a943921466", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0f6cc463-6e84-4fa1-9526-382b625e259d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:65f92cbb-2639-4f15-8c6a-30d81e34141f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d2438e43-1a52-4ae3-9c9c-47cf6636e206", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:97d40e77-d5a8-4c7b-a5db-2488c1c4e2d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7113e6d-c12d-49ad-aa36-cc2678d7df3e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:50ce9389-2ccb-4945-b336-1617e4679863", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0b58fe0-d932-4df1-acc1-1eeeeac1103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e4875d28-828a-4dad-9482-97a0dd08c921", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5a2ae04e-8db3-45b7-af3d-d6da92dfe3bb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:479b7da6-3529-4f02-81dc-826c145f5afa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e84c731a-3221-4002-9e61-dd500978ee81", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed9ac0b8-628c-4a5e-bfc3-cbec70f2a1d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ea1a8c53-56a2-4dd6-af09-3e722d7d85f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bba31f8d-66b6-4286-9f52-f44940513676", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:982b4856-c029-41a2-a593-56f5d38a9f81", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "WI-61", + "key" : "manufacturerPartId" + }, { + "value" : "OMBVCYCGWHUWBCTUX", + "key" : "partInstanceId" + }, { + "value" : "OMBVCYCGWHUWBCTUX", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-05-13T23:08:30.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "partTypeInformation" : { + "manufacturerPartId" : "WI-61", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMBVCYCGWHUWBCTUX", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "WI-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_fully_electric.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Fully Electric" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, + "id" : "urn:uuid:68f994ee-6754-4713-9a9f-4f2390937660" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 73, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 29, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 65, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 4, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 18, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 42, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 16, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 44, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 74, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 63, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:443fdeee-3d6c-4bc8-81f1-007b1c5aba03", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:443fdeee-3d6c-4bc8-81f1-007b1c5aba03" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-113193366514077322541882", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:443fdeee-3d6c-4bc8-81f1-007b1c5aba03", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-113193366514077322541882", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:443fdeee-3d6c-4bc8-81f1-007b1c5aba03" ] + }, + "id" : "urn:uuid:89def6ee-2126-424b-87d4-337b83eb7382" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937", + "childItems" : [ { + "catenaXId" : "urn:uuid:f0304a0d-6a03-4c44-b433-a0c0235438e4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-686351636694327828548799", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-686351636694327828548799", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937" ] + }, + "id" : "urn:uuid:f8f65c42-71b1-4aa0-94a5-57c51f20f65b" + } ] + }, { + "catenaXId" : "urn:uuid:f0304a0d-6a03-4c44-b433-a0c0235438e4", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0304a0d-6a03-4c44-b433-a0c0235438e4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-058899127953285371545122", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0304a0d-6a03-4c44-b433-a0c0235438e4", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-058899127953285371545122", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0304a0d-6a03-4c44-b433-a0c0235438e4" ] + }, + "id" : "urn:uuid:66cc5725-395f-40b7-ae51-d0073283dd48" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c", + "childItems" : [ { + "catenaXId" : "urn:uuid:4e143b59-f638-437d-962d-4bc32ac01ac5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-018055320046979115769664", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-018055320046979115769664", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c" ] + }, + "id" : "urn:uuid:0d2b5c91-4f8a-4bc5-a28b-1cdc985830fc" + } ] + }, { + "catenaXId" : "urn:uuid:4e143b59-f638-437d-962d-4bc32ac01ac5", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4e143b59-f638-437d-962d-4bc32ac01ac5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-434696342660251512284781", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4e143b59-f638-437d-962d-4bc32ac01ac5", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-434696342660251512284781", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4e143b59-f638-437d-962d-4bc32ac01ac5" ] + }, + "id" : "urn:uuid:c910b458-57ab-4639-a399-e14326db956d" + } ] + }, { + "catenaXId" : "urn:uuid:3852c430-b854-47aa-a0ed-139cae6abbf8", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3852c430-b854-47aa-a0ed-139cae6abbf8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-294757704281486089937911", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3852c430-b854-47aa-a0ed-139cae6abbf8", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-294757704281486089937911", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3852c430-b854-47aa-a0ed-139cae6abbf8" ] + }, + "id" : "urn:uuid:a66af3ce-3287-478a-b9d7-831726d8eb4e" + } ] + }, { + "catenaXId" : "urn:uuid:ba5e8a8f-f786-4fc8-8f1a-8041797faf1a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ba5e8a8f-f786-4fc8-8f1a-8041797faf1a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-511693168364367524649048", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ba5e8a8f-f786-4fc8-8f1a-8041797faf1a", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-511693168364367524649048", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ba5e8a8f-f786-4fc8-8f1a-8041797faf1a" ] + }, + "id" : "urn:uuid:0435f080-bd6d-47a3-afde-36050ed1a8e9" + } ] + }, { + "catenaXId" : "urn:uuid:aa11babe-ad64-451d-938a-1ce3cfcb3bf1", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aa11babe-ad64-451d-938a-1ce3cfcb3bf1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-311880415993226583763577", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aa11babe-ad64-451d-938a-1ce3cfcb3bf1", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-311880415993226583763577", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:aa11babe-ad64-451d-938a-1ce3cfcb3bf1" ] + }, + "id" : "urn:uuid:9620d393-6c47-4633-be79-332716045fbb" + } ] + }, { + "catenaXId" : "urn:uuid:954db4a3-4bec-4a06-b0d0-205bca2da20b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:954db4a3-4bec-4a06-b0d0-205bca2da20b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-656082932780672865155398", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:954db4a3-4bec-4a06-b0d0-205bca2da20b", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-656082932780672865155398", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:954db4a3-4bec-4a06-b0d0-205bca2da20b" ] + }, + "id" : "urn:uuid:d824eeba-c251-40d8-adaf-8666909d61f6" + } ] + }, { + "catenaXId" : "urn:uuid:15e8dbeb-e744-4ed1-87a3-4a539dc5274b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:15e8dbeb-e744-4ed1-87a3-4a539dc5274b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-537850604600894134284638", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:15e8dbeb-e744-4ed1-87a3-4a539dc5274b", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-537850604600894134284638", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:15e8dbeb-e744-4ed1-87a3-4a539dc5274b" ] + }, + "id" : "urn:uuid:e7cada08-7ae3-4aab-bb62-17230964c449" + } ] + }, { + "catenaXId" : "urn:uuid:f49b210f-c19c-4bfa-85e0-857c263789d0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f49b210f-c19c-4bfa-85e0-857c263789d0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-836797165743813713037269", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f49b210f-c19c-4bfa-85e0-857c263789d0", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-836797165743813713037269", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f49b210f-c19c-4bfa-85e0-857c263789d0" ] + }, + "id" : "urn:uuid:7ff3e49f-333f-4809-ab4f-b6dc4dfb71a8" + } ] + }, { + "catenaXId" : "urn:uuid:61e08f18-48bb-479d-9514-c7bea8cecf42", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:61e08f18-48bb-479d-9514-c7bea8cecf42" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-083442659984540362885398", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:61e08f18-48bb-479d-9514-c7bea8cecf42", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-083442659984540362885398", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:61e08f18-48bb-479d-9514-c7bea8cecf42" ] + }, + "id" : "urn:uuid:2bf75a7d-f7a9-4d92-a0aa-a74f3adb6d82" + } ] + }, { + "catenaXId" : "urn:uuid:f3b0a665-7c8c-4c79-9ba5-beb9c3f138df", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f3b0a665-7c8c-4c79-9ba5-beb9c3f138df" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-568904847091393073722291", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f3b0a665-7c8c-4c79-9ba5-beb9c3f138df", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-568904847091393073722291", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f3b0a665-7c8c-4c79-9ba5-beb9c3f138df" ] + }, + "id" : "urn:uuid:6e64f955-7fb4-4035-baa9-73760302e836" + } ] + }, { + "catenaXId" : "urn:uuid:04a4d57c-6c36-4aa4-b97b-ae8b633d67f1", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:04a4d57c-6c36-4aa4-b97b-ae8b633d67f1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-737647595645221711822872", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04a4d57c-6c36-4aa4-b97b-ae8b633d67f1", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-737647595645221711822872", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:04a4d57c-6c36-4aa4-b97b-ae8b633d67f1" ] + }, + "id" : "urn:uuid:6b8ff7ca-6836-49bc-a917-af6c8e8eddab" + } ] + }, { + "catenaXId" : "urn:uuid:e71885f8-497c-4e37-af9f-6315c9f9817a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e71885f8-497c-4e37-af9f-6315c9f9817a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-953803088482308283445201", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e71885f8-497c-4e37-af9f-6315c9f9817a", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-953803088482308283445201", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e71885f8-497c-4e37-af9f-6315c9f9817a" ] + }, + "id" : "urn:uuid:af4f9787-672a-44bd-80e0-a43e75d32734" + } ] + }, { + "catenaXId" : "urn:uuid:dbc69f18-2ec1-43a9-b2df-02a943921466", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dbc69f18-2ec1-43a9-b2df-02a943921466" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-974816667786906921505259", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dbc69f18-2ec1-43a9-b2df-02a943921466", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-974816667786906921505259", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:dbc69f18-2ec1-43a9-b2df-02a943921466" ] + }, + "id" : "urn:uuid:09939690-6b5c-4bbf-a456-86bc3ec53121" + } ] + }, { + "catenaXId" : "urn:uuid:0f6cc463-6e84-4fa1-9526-382b625e259d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0f6cc463-6e84-4fa1-9526-382b625e259d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-496080041864642453190315", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0f6cc463-6e84-4fa1-9526-382b625e259d", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-496080041864642453190315", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0f6cc463-6e84-4fa1-9526-382b625e259d" ] + }, + "id" : "urn:uuid:475d7c21-f9bc-44cb-bd81-897ad505e2f4" + } ] + }, { + "catenaXId" : "urn:uuid:65f92cbb-2639-4f15-8c6a-30d81e34141f", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:65f92cbb-2639-4f15-8c6a-30d81e34141f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-449750179424917117024683", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:65f92cbb-2639-4f15-8c6a-30d81e34141f", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-449750179424917117024683", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:65f92cbb-2639-4f15-8c6a-30d81e34141f" ] + }, + "id" : "urn:uuid:8f4b3cb1-619c-4c65-b6e1-67abb9898277" + } ] + }, { + "catenaXId" : "urn:uuid:d2438e43-1a52-4ae3-9c9c-47cf6636e206", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d2438e43-1a52-4ae3-9c9c-47cf6636e206" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-301753006944411033680620", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d2438e43-1a52-4ae3-9c9c-47cf6636e206", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-301753006944411033680620", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d2438e43-1a52-4ae3-9c9c-47cf6636e206" ] + }, + "id" : "urn:uuid:2cad4608-428e-4d65-9896-a06af32a93d8" + } ] + }, { + "catenaXId" : "urn:uuid:97d40e77-d5a8-4c7b-a5db-2488c1c4e2d8", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:97d40e77-d5a8-4c7b-a5db-2488c1c4e2d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-687183415108768407570594", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:97d40e77-d5a8-4c7b-a5db-2488c1c4e2d8", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-687183415108768407570594", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:97d40e77-d5a8-4c7b-a5db-2488c1c4e2d8" ] + }, + "id" : "urn:uuid:bb5d9ea8-db63-4578-b8e3-33f517b067b9" + } ] + }, { + "catenaXId" : "urn:uuid:f7113e6d-c12d-49ad-aa36-cc2678d7df3e", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f7113e6d-c12d-49ad-aa36-cc2678d7df3e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-319798193356682697391781", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f7113e6d-c12d-49ad-aa36-cc2678d7df3e", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-319798193356682697391781", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f7113e6d-c12d-49ad-aa36-cc2678d7df3e" ] + }, + "id" : "urn:uuid:0fdda678-f23b-44e3-8e75-7e0709f6b730" + } ] + }, { + "catenaXId" : "urn:uuid:50ce9389-2ccb-4945-b336-1617e4679863", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:50ce9389-2ccb-4945-b336-1617e4679863" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-086155091177427728927932", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:50ce9389-2ccb-4945-b336-1617e4679863", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-086155091177427728927932", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:50ce9389-2ccb-4945-b336-1617e4679863" ] + }, + "id" : "urn:uuid:0112898a-3d25-4192-b153-5e6621c67411" + } ] + }, { + "catenaXId" : "urn:uuid:f0b58fe0-d932-4df1-acc1-1eeeeac1103f", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0b58fe0-d932-4df1-acc1-1eeeeac1103f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-811671397646002397329660", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0b58fe0-d932-4df1-acc1-1eeeeac1103f", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-811671397646002397329660", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0b58fe0-d932-4df1-acc1-1eeeeac1103f" ] + }, + "id" : "urn:uuid:4575c3bc-3000-499a-8da3-9fb18fb1e257" + } ] + }, { + "catenaXId" : "urn:uuid:e4875d28-828a-4dad-9482-97a0dd08c921", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e4875d28-828a-4dad-9482-97a0dd08c921" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-535081014465288316462464", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e4875d28-828a-4dad-9482-97a0dd08c921", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-535081014465288316462464", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e4875d28-828a-4dad-9482-97a0dd08c921" ] + }, + "id" : "urn:uuid:cbc4be5e-005e-4cd3-b270-6e5cca39580a" + } ] + }, { + "catenaXId" : "urn:uuid:5a2ae04e-8db3-45b7-af3d-d6da92dfe3bb", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5a2ae04e-8db3-45b7-af3d-d6da92dfe3bb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-109719990327376953952381", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5a2ae04e-8db3-45b7-af3d-d6da92dfe3bb", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-109719990327376953952381", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5a2ae04e-8db3-45b7-af3d-d6da92dfe3bb" ] + }, + "id" : "urn:uuid:123cffd4-f14e-41a7-a3fe-5ff5490e1459" + } ] + }, { + "catenaXId" : "urn:uuid:479b7da6-3529-4f02-81dc-826c145f5afa", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:479b7da6-3529-4f02-81dc-826c145f5afa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-282292031924528544924309", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:479b7da6-3529-4f02-81dc-826c145f5afa", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-282292031924528544924309", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:479b7da6-3529-4f02-81dc-826c145f5afa" ] + }, + "id" : "urn:uuid:76286ac1-849e-4bc3-bb33-e7796e799fec" + } ] + }, { + "catenaXId" : "urn:uuid:e84c731a-3221-4002-9e61-dd500978ee81", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e84c731a-3221-4002-9e61-dd500978ee81" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-694303014087755056421523", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e84c731a-3221-4002-9e61-dd500978ee81", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-694303014087755056421523", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e84c731a-3221-4002-9e61-dd500978ee81" ] + }, + "id" : "urn:uuid:641de0b0-3abd-43ea-9fb7-1a582b02da41" + } ] + }, { + "catenaXId" : "urn:uuid:ed9ac0b8-628c-4a5e-bfc3-cbec70f2a1d3", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ed9ac0b8-628c-4a5e-bfc3-cbec70f2a1d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-222126431597191339210939", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ed9ac0b8-628c-4a5e-bfc3-cbec70f2a1d3", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-222126431597191339210939", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ed9ac0b8-628c-4a5e-bfc3-cbec70f2a1d3" ] + }, + "id" : "urn:uuid:b4fbddf6-f568-498a-aa86-0a9eb8297712" + } ] + }, { + "catenaXId" : "urn:uuid:ea1a8c53-56a2-4dd6-af09-3e722d7d85f0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ea1a8c53-56a2-4dd6-af09-3e722d7d85f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-418714742214899327137579", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ea1a8c53-56a2-4dd6-af09-3e722d7d85f0", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-418714742214899327137579", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ea1a8c53-56a2-4dd6-af09-3e722d7d85f0" ] + }, + "id" : "urn:uuid:20a3e931-16ea-479d-a54c-6084855a8ab8" + } ] + }, { + "catenaXId" : "urn:uuid:bba31f8d-66b6-4286-9f52-f44940513676", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bba31f8d-66b6-4286-9f52-f44940513676" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-339341640551184441474090", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bba31f8d-66b6-4286-9f52-f44940513676", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-339341640551184441474090", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bba31f8d-66b6-4286-9f52-f44940513676" ] + }, + "id" : "urn:uuid:0c24a0b7-9f91-4cb3-8f70-ccae9dbbc276" + } ] + }, { + "catenaXId" : "urn:uuid:982b4856-c029-41a2-a593-56f5d38a9f81", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:982b4856-c029-41a2-a593-56f5d38a9f81" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-370362385804125195573906", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:982b4856-c029-41a2-a593-56f5d38a9f81", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-370362385804125195573906", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:982b4856-c029-41a2-a593-56f5d38a9f81" ] + }, + "id" : "urn:uuid:81a1c7a8-4406-454b-8c0c-ccd31ed61ea7" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", + "childItems" : [ { + "catenaXId" : "urn:uuid:121a21a0-856c-4819-92e5-b69385a6a571", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cf764f6c-5e57-4001-ad1c-62e1aeb04e5b", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-202191047332769814013821", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-202191047332769814013821", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-202191047332769814013821", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc" ] + }, + "id" : "urn:uuid:01cf24b1-ebf1-4ede-84c8-cdb325a6e083" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 53, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 33, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 0, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:121a21a0-856c-4819-92e5-b69385a6a571", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:121a21a0-856c-4819-92e5-b69385a6a571" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "52256Y5-81", + "key" : "manufacturerPartId" + }, { + "value" : "NO-720863402538762165204696", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:121a21a0-856c-4819-92e5-b69385a6a571", + "partTypeInformation" : { + "manufacturerPartId" : "52256Y5-81", + "customerPartId" : "52256Y5-81", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 11, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 69, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ea156a2-e0fd-4922-84f4-02f6b3ba1552", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "92733R4-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-521828557923458825708065", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd", + "partTypeInformation" : { + "manufacturerPartId" : "92733R4-49", + "customerPartId" : "92733R4-49", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-521828557923458825708065", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "92733R4-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd" ] + }, + "id" : "urn:uuid:c4ee0210-5274-4b84-8d14-6af662cf0b04" + } ] + }, { + "catenaXId" : "urn:uuid:6ea156a2-e0fd-4922-84f4-02f6b3ba1552", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6ea156a2-e0fd-4922-84f4-02f6b3ba1552" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "30325C0-95", + "key" : "manufacturerPartId" + }, { + "value" : "NO-421219205754806950689942", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ea156a2-e0fd-4922-84f4-02f6b3ba1552", + "partTypeInformation" : { + "manufacturerPartId" : "30325C0-95", + "customerPartId" : "30325C0-95", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 37, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 77, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cf764f6c-5e57-4001-ad1c-62e1aeb04e5b", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:cf764f6c-5e57-4001-ad1c-62e1aeb04e5b", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cf764f6c-5e57-4001-ad1c-62e1aeb04e5b" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "68435W5-85", + "key" : "manufacturerPartId" + }, { + "value" : "NO-997929705427500669303874", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cf764f6c-5e57-4001-ad1c-62e1aeb04e5b", + "partTypeInformation" : { + "manufacturerPartId" : "68435W5-85", + "customerPartId" : "68435W5-85", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637", + "childItems" : [ { + "catenaXId" : "urn:uuid:84f80f09-1ece-4bb8-b43e-d65cb747fe66", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b7230e91-645e-49af-897f-9a8289061926", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c8a971a8-bec3-4f4e-91cd-437fa48279a5", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "21044S8-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-231000994158263229160977", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637", + "partTypeInformation" : { + "manufacturerPartId" : "21044S8-98", + "customerPartId" : "21044S8-98", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-231000994158263229160977", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "21044S8-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637" ] + }, + "id" : "urn:uuid:726b67b6-43dc-4d52-85de-376a5e15b0aa" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 17, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:84f80f09-1ece-4bb8-b43e-d65cb747fe66", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:84f80f09-1ece-4bb8-b43e-d65cb747fe66" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "10982Q7-56", + "key" : "manufacturerPartId" + }, { + "value" : "NO-544282020783552970862345", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:84f80f09-1ece-4bb8-b43e-d65cb747fe66", + "partTypeInformation" : { + "manufacturerPartId" : "10982Q7-56", + "customerPartId" : "10982Q7-56", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 80, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 42, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b7230e91-645e-49af-897f-9a8289061926", + "childItems" : [ { + "catenaXId" : "urn:uuid:b6670a4f-528f-4047-a733-c22ad8d4e246", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b7230e91-645e-49af-897f-9a8289061926", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b7230e91-645e-49af-897f-9a8289061926" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "06188T6-51", + "key" : "manufacturerPartId" + }, { + "value" : "NO-745529161128417634458624", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b7230e91-645e-49af-897f-9a8289061926", + "partTypeInformation" : { + "manufacturerPartId" : "06188T6-51", + "customerPartId" : "06188T6-51", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-745529161128417634458624", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "06188T6-51", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b7230e91-645e-49af-897f-9a8289061926" ] + }, + "id" : "urn:uuid:0b73a744-251d-4963-9c30-d172e7ac63ce" + } ] + }, { + "catenaXId" : "urn:uuid:b6670a4f-528f-4047-a733-c22ad8d4e246", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b7230e91-645e-49af-897f-9a8289061926", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b6670a4f-528f-4047-a733-c22ad8d4e246" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "78287G5-91", + "key" : "manufacturerPartId" + }, { + "value" : "NO-396405894595399226819595", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b6670a4f-528f-4047-a733-c22ad8d4e246", + "partTypeInformation" : { + "manufacturerPartId" : "78287G5-91", + "customerPartId" : "78287G5-91", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 25, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 27, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:c8a971a8-bec3-4f4e-91cd-437fa48279a5", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c8a971a8-bec3-4f4e-91cd-437fa48279a5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "78737W4-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-598937634834714454251596", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c8a971a8-bec3-4f4e-91cd-437fa48279a5", + "partTypeInformation" : { + "manufacturerPartId" : "78737W4-47", + "customerPartId" : "78737W4-47", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-598937634834714454251596", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78737W4-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c8a971a8-bec3-4f4e-91cd-437fa48279a5" ] + }, + "id" : "urn:uuid:5b07bce0-1ea6-4cc4-8a66-ea3e2bc8cd32" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 86, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 9, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "childItems" : [ { + "catenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-204644341979089814758396", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-204644341979089814758396", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa" ] + }, + "id" : "urn:uuid:341992f0-1f37-4fbc-8dd1-5659ae0e1dd3" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 10, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 72, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 51, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-316449189756968770516248", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-316449189756968770516248", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, + "id" : "urn:uuid:c2cd4fbe-00a2-4f94-a653-e92daf1e6ae5" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 81, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 52, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 34, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-729528262451846672212683", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-729528262451846672212683", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8" ] + }, + "id" : "urn:uuid:68d9f932-bf56-4c71-b2cb-be0675924f55" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-17T02:34:34.916Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T06:07:10.916Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-801051132917452671167226", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-801051132917452671167226", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10" ] + }, + "id" : "urn:uuid:f5f5b4ef-f07e-4c2c-b203-3252086ba46f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-21T12:29:08.926Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T01:16:20.926Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-964937377550954893658956", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-964937377550954893658956", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344" ] + }, + "id" : "urn:uuid:2c078b31-20b4-4245-b01f-758a481d9219" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-19T20:13:43.935Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T13:17:40.935Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-026734550487568359643632", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-026734550487568359643632", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c" ] + }, + "id" : "urn:uuid:ec4a5783-53ae-4fa9-8dee-4528ec32706c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-05-14T10:31:34.945Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T21:31:53.945Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-360007717994092862464325", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-360007717994092862464325", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d" ] + }, + "id" : "urn:uuid:cff667c2-1deb-411d-ad33-b3170287385b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-27T07:40:53.954Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T03:00:13.954Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-645453568597275105504082", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-645453568597275105504082", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f" ] + }, + "id" : "urn:uuid:5d938d80-9518-402e-9915-efb6afb6cf29" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-01-14T06:06:50.963Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T02:09:51.963Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-841984028644340877716362", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-841984028644340877716362", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d" ] + }, + "id" : "urn:uuid:29795d95-b7b2-4431-b69c-aadd8f51a8ee" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-21T23:11:52.973Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T08:06:50.973Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-955218546909724482915814", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-955218546909724482915814", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3" ] + }, + "id" : "urn:uuid:1faca506-0706-4e5c-b59d-e90263b692c3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-15T02:13:58.983Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T06:18:30.983Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-888718643767268956680525", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-888718643767268956680525", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f" ] + }, + "id" : "urn:uuid:a5b41cdf-b7c1-47cb-986a-9817ce8b0773" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-11T10:53:14.995Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T00:33:29.995Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-353138135065819998893911", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-353138135065819998893911", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c" ] + }, + "id" : "urn:uuid:c93aadbb-0430-4e86-981f-54c61c9ca11f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-14T16:47:41.006Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T16:45:19.006Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-378912875855347186450507", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-378912875855347186450507", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, + "id" : "urn:uuid:383d9b7b-8855-4e15-8c72-be38f690f0a5" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 81, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 40, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 78, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-381613295244902777129062", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-381613295244902777129062", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5" ] + }, + "id" : "urn:uuid:170881e5-f813-4412-b422-a4e48cce4ba8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-13T00:27:33.027Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T12:02:35.027Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-948894030626398378854005", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-948894030626398378854005", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3" ] + }, + "id" : "urn:uuid:92b7ff7e-7919-4424-b0e8-926fa94807d4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-12T00:13:38.039Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T16:53:24.039Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-571613506331117092472507", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-571613506331117092472507", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5" ] + }, + "id" : "urn:uuid:22236510-a345-4285-95e2-072b5ebae742" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-23T06:48:54.048Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T04:35:02.048Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-342909140885411957634063", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-342909140885411957634063", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2" ] + }, + "id" : "urn:uuid:90f2d5f5-d903-408e-b413-b6e02bc204e6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-22T11:38:41.060Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T03:08:24.060Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-900469000339839858404443", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-900469000339839858404443", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e" ] + }, + "id" : "urn:uuid:9514126d-788f-4882-8489-29356ca5aa6d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-08-16T13:18:15.071Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T12:38:58.071Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-195328304014422225853522", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-195328304014422225853522", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768" ] + }, + "id" : "urn:uuid:19fe41a8-f025-41fd-a096-4ff41a78060f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-24T11:12:31.081Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T10:23:25.081Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-922826737055693407842658", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-922826737055693407842658", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92" ] + }, + "id" : "urn:uuid:8701ebbf-c295-4094-a38a-5dc11f19042f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-03-06T22:52:29.093Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T10:45:50.093Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-854707468148385450193494", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-854707468148385450193494", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c" ] + }, + "id" : "urn:uuid:465c742a-54fb-47cc-953c-e0b3c7d0889f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-30T21:23:28.103Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T19:02:20.103Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-945432010760368544542904", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-945432010760368544542904", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef" ] + }, + "id" : "urn:uuid:06709544-4116-454c-95d1-0a52e3c17076" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-11T08:29:37.113Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T22:22:01.113Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-173628325703568089826871", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-173628325703568089826871", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e" ] + }, + "id" : "urn:uuid:3b4d9470-a9a2-4914-ab4f-30f06d9a6a1b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-09T09:56:36.123Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T08:00:15.123Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-265555503123532358280546", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-265555503123532358280546", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, + "id" : "urn:uuid:1bc793fc-f300-4bd4-9159-47a937e14b9b" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 88, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 24, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 17, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-709083834406096465098702", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-709083834406096465098702", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422" ] + }, + "id" : "urn:uuid:0c5762b5-c9cb-41c6-a0ed-2e4f26e7059b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-08T06:41:30.145Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T23:39:04.145Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-830680553887579663762262", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-830680553887579663762262", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec" ] + }, + "id" : "urn:uuid:382d4dc5-e6a2-4ac0-8c72-c049f37669c4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-29T19:22:00.155Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T12:23:36.155Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-403079179017791616491373", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-403079179017791616491373", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9" ] + }, + "id" : "urn:uuid:a5c3aeaf-53f1-410b-bcfa-e61f6c591f2c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-06T00:48:27.164Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T01:39:01.164Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-614859169255727055399835", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-614859169255727055399835", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a" ] + }, + "id" : "urn:uuid:4d2f7abe-cab8-49ee-9142-2c9e123f3393" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-24T14:42:35.173Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T03:15:31.173Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-939414049935020899882307", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-939414049935020899882307", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557" ] + }, + "id" : "urn:uuid:aadd3e7c-1382-4658-b54b-1e5edcf43143" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-17T07:55:51.181Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T12:21:26.181Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-137407108530631491361583", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-137407108530631491361583", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e" ] + }, + "id" : "urn:uuid:1d5fc8f9-2b42-416b-ad99-22c53555af45" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-24T17:14:17.191Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T07:10:44.191Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-926014071761959986315340", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-926014071761959986315340", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39" ] + }, + "id" : "urn:uuid:04179c7c-aad5-4179-9580-aa8e48282584" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-24T16:05:13.203Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T16:14:37.203Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-385874991537903206942902", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-385874991537903206942902", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b" ] + }, + "id" : "urn:uuid:5a3df999-05c2-4129-b64a-af7e89628b4d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-11T12:43:12.212Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T03:54:49.212Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-703589140392684914660058", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-703589140392684914660058", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982" ] + }, + "id" : "urn:uuid:56f0ac0e-3acc-4018-81fd-358f20b9fb39" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-03T07:13:43.221Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T07:25:17.221Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-946888708600371506362156", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-946888708600371506362156", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e" ] + }, + "id" : "urn:uuid:da6d2f1c-e578-4046-8e3c-c37c27082271" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-31T14:51:24.230Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T17:35:00.230Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18485718-4e23-451e-ae02-ee412f647061", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-454989929653772546721097", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-454989929653772546721097", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, + "id" : "urn:uuid:4b518660-1be8-4697-a2d3-5f9637c3a714" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 30, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 86, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 18, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-410516112708476701215611", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-410516112708476701215611", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f" ] + }, + "id" : "urn:uuid:ce9cf2fc-480a-4bd1-bf63-e01a4df9d2f0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-21T02:57:41.249Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T03:30:22.249Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-146454927313139186070599", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-146454927313139186070599", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2" ] + }, + "id" : "urn:uuid:dd573910-c2ef-4393-bfb1-d9b8eb96f7e9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-11-09T10:58:28.258Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T22:10:22.258Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-901425226803162764802787", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-901425226803162764802787", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434" ] + }, + "id" : "urn:uuid:09b5150b-e5dd-441d-ab16-30566eabd53c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-20T23:06:39.267Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T16:33:33.267Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-142121542625499820642860", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-142121542625499820642860", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230" ] + }, + "id" : "urn:uuid:43453fca-ca14-4400-bbff-f39079e50425" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-08-27T16:47:54.276Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T20:36:16.276Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-946875891894877318915594", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-946875891894877318915594", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd" ] + }, + "id" : "urn:uuid:a53a6828-c2dc-42cb-8bce-cebbe0ea97a1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-09T12:14:36.285Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T06:37:23.285Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-856938343388216277987650", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-856938343388216277987650", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79" ] + }, + "id" : "urn:uuid:a494ece9-5ef8-4ccc-9da5-9d7e1c5b5bef" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-01T05:21:11.295Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T21:14:13.295Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-931550776413517515122970", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-931550776413517515122970", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc" ] + }, + "id" : "urn:uuid:b1771095-09fd-4594-b657-b7fe353b42d4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-12-24T07:39:54.304Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T19:37:34.304Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-359907786337710136949730", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-359907786337710136949730", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5" ] + }, + "id" : "urn:uuid:16dd47a9-2c73-49ac-987e-3533a5f8f092" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-25T05:29:31.312Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T12:06:41.312Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-268829833691031530681336", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-268829833691031530681336", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1" ] + }, + "id" : "urn:uuid:491f2ed2-23ca-458c-8b31-ab49f0c47fad" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-05T08:00:04.321Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T03:57:53.321Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:18485718-4e23-451e-ae02-ee412f647061", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:18485718-4e23-451e-ae02-ee412f647061", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18485718-4e23-451e-ae02-ee412f647061" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-774615261485748771630114", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18485718-4e23-451e-ae02-ee412f647061", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-774615261485748771630114", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:18485718-4e23-451e-ae02-ee412f647061" ] + }, + "id" : "urn:uuid:0bf0d3f1-5b6b-485c-85a9-f068238b8775" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-06-16T09:44:01.330Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T18:26:37.330Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:07c22736-3033-4645-994c-e16c603ea140", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-660944357909227906470314", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-660944357909227906470314", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, + "id" : "urn:uuid:38143435-7351-437b-90e9-c39c610e1351" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 38, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 20, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 2, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-042107300599381223828569", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-042107300599381223828569", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1" ] + }, + "id" : "urn:uuid:d75c7806-696f-4f45-b660-88827e0c7ee6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-18T07:20:13.348Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T00:36:10.348Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-458989431266791589347615", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-458989431266791589347615", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2" ] + }, + "id" : "urn:uuid:f8475eb0-1f96-44c0-91f6-30e8763df93e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-21T11:01:41.358Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T01:07:01.358Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-367733064703385098386189", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-367733064703385098386189", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99" ] + }, + "id" : "urn:uuid:a5891975-1812-493f-8bc2-0785d99dc026" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-08T17:10:44.366Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T12:06:50.366Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-334247202741042786576577", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-334247202741042786576577", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df" ] + }, + "id" : "urn:uuid:32c896aa-f0b9-46af-a875-7316315aacb0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-17T04:37:51.375Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T06:52:35.375Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-825699748012632711321678", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-825699748012632711321678", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd" ] + }, + "id" : "urn:uuid:6801833d-728a-4378-b87c-0704a22f0b86" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-04T00:36:50.384Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T20:20:57.384Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-559117313891392913458281", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-559117313891392913458281", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4" ] + }, + "id" : "urn:uuid:6df435c5-623f-44da-a5bc-002cadd260b7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-16T11:58:20.393Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T17:48:54.393Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-016761449794944171899607", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-016761449794944171899607", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd" ] + }, + "id" : "urn:uuid:6ca84636-5216-462b-ab31-438bffc954b8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-26T02:22:43.402Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T03:15:47.402Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:07c22736-3033-4645-994c-e16c603ea140", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:07c22736-3033-4645-994c-e16c603ea140", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:07c22736-3033-4645-994c-e16c603ea140" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-500539529681264926843789", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:07c22736-3033-4645-994c-e16c603ea140", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-500539529681264926843789", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:07c22736-3033-4645-994c-e16c603ea140" ] + }, + "id" : "urn:uuid:d7ae0404-194a-4d13-8f21-7d372caa58b3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-08-06T01:51:11.412Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T23:18:09.412Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-711688372414989640884194", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-711688372414989640884194", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba" ] + }, + "id" : "urn:uuid:f998c962-146c-469d-a3be-96cfb92bb12f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-10-04T10:04:26.422Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T08:52:51.422Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-368907394100670327371772", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-368907394100670327371772", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894" ] + }, + "id" : "urn:uuid:75fd44d0-c2c0-4668-88a4-dfa8aff791ac" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-06T12:41:10.430Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T12:17:04.430Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-522217084802348906524456", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-522217084802348906524456", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, + "id" : "urn:uuid:dfe9933c-96ca-48f8-a345-38f4858943d0" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 86, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 78, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 12, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-842687705899988362531627", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-842687705899988362531627", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8" ] + }, + "id" : "urn:uuid:78a322a6-1f9d-4821-96e5-37fff52b87f0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-07-29T09:37:15.449Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T06:26:16.449Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-571374274369385328778126", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-571374274369385328778126", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58" ] + }, + "id" : "urn:uuid:65b662c7-e0fb-4309-9f32-9c5ff45ccd31" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-10-15T03:41:34.458Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T15:11:26.458Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-834544725071018273070630", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-834544725071018273070630", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6" ] + }, + "id" : "urn:uuid:0ffe79b4-97c1-40be-8fa4-6cf74c30004e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-11T06:48:13.467Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T08:02:16.467Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-311215018781226095988988", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-311215018781226095988988", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f" ] + }, + "id" : "urn:uuid:1b4ea1c7-eada-465d-b3c6-3fa7e56df25c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-18T13:57:09.476Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T18:20:54.476Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-758929238713510459806806", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-758929238713510459806806", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90" ] + }, + "id" : "urn:uuid:bc81b1a1-15d8-4ed0-b8a9-6d710a073d95" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-18T13:55:13.485Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T15:10:55.485Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-763779651038246953151586", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-763779651038246953151586", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3" ] + }, + "id" : "urn:uuid:9e9af42e-3591-4917-85c3-d825fbe8570a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-24T20:13:46.494Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T21:46:27.494Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-065952646865029617212546", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-065952646865029617212546", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16" ] + }, + "id" : "urn:uuid:56d02b40-c2bc-4059-b239-06c69a4772ae" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-12-22T20:43:27.503Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T06:33:40.503Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-618132052751489859953582", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-618132052751489859953582", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd" ] + }, + "id" : "urn:uuid:fc97d556-ed2c-4c61-a86c-4e54f5300168" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-05T16:53:43.513Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T23:33:39.513Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-356630372970502025078514", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-356630372970502025078514", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f" ] + }, + "id" : "urn:uuid:9f6017de-411f-44b6-b596-44a99701ec9e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-30T20:52:58.524Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T21:31:48.524Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-563656086319662492808746", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-563656086319662492808746", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573" ] + }, + "id" : "urn:uuid:fd831dd7-20c7-4b49-82c6-039f3d6bbaae" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-25T10:49:29.534Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T04:31:18.534Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "electric", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "childItems" : [ { + "catenaXId" : "urn:uuid:0f6b98f4-50ec-4713-94a5-f0827ebe9af9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ccab5e8b-ff32-4644-a121-78f2509bb617", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e3eed488-e631-424b-88a2-668dfe223a26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:87c77597-8936-426d-bee8-56bd55b7b9aa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:704998a8-f4cb-4845-88a6-8244bca1ae26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d7a82260-0dd4-4644-a812-04eac0c52bf4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:20b62ec3-20a3-4420-9135-e7f309e43bc7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6efaa21d-d2a9-433e-922b-cb73bda7be67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d13410e5-9a80-459c-84e0-c00aa46f4899", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:30b1ecf4-07e6-4f77-9303-002ef52f0934", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12340fac-5386-4166-b2a4-3d8103093ed6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f550ac0d-c149-4663-878b-6b8bb53a2bf6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4447cbd1-9a9e-418d-a4bc-ac89f059f7a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0213b277-fe9f-4686-a386-6f47e393a6ed", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a0a3f1ea-7e69-48ae-a546-b822537b8046", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2bf6e90e-c9d9-4bc9-8ab7-e56ce3b9d060", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c8f0ea47-2774-4dd4-ac84-1abc35433250", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:578689e4-a80f-4952-91b3-799d5140f8ab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a5051b48-48a8-4697-9067-f7016b0c8421", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e7a64b63-b518-4ea7-ba39-3c9306c12f9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:172c7fc5-59dc-4959-bbdf-93dfd2493504", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:79da6a80-19a0-4552-b5bd-754416af6242", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:23ab16fd-e8bc-46c2-a44c-9d951f55b6f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4e21ffa2-e6cc-42bc-b863-fb94d6f3b87b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f957021c-207b-4f71-ba76-12b05e7e0990", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:701122f8-8378-4cdd-b960-5f457b78d2c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bcdac515-ca3f-4c41-b578-63d9afac1120", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "HV-42", + "key" : "manufacturerPartId" + }, { + "value" : "OMACBCDYFXGFQNZYH", + "key" : "partInstanceId" + }, { + "value" : "OMACBCDYFXGFQNZYH", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2017-07-18T11:30:15.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "partTypeInformation" : { + "manufacturerPartId" : "HV-42", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMACBCDYFXGFQNZYH", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "HV-42", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_fully_electric.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Fully Electric" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, + "id" : "urn:uuid:000600e6-fde7-4e05-b7b2-244f763b8bf7" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 54, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 65, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 23, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 80, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 79, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 35, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 40, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 47, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 31, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 10, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:0f6b98f4-50ec-4713-94a5-f0827ebe9af9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0f6b98f4-50ec-4713-94a5-f0827ebe9af9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-051450748540685966884971", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0f6b98f4-50ec-4713-94a5-f0827ebe9af9", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-051450748540685966884971", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0f6b98f4-50ec-4713-94a5-f0827ebe9af9" ] + }, + "id" : "urn:uuid:9ff6da1b-368f-4244-a692-aae753d7787b" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7", + "childItems" : [ { + "catenaXId" : "urn:uuid:cd2e4d05-7d85-4216-9303-8061926c4b9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-540434026370364981721556", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-540434026370364981721556", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7" ] + }, + "id" : "urn:uuid:b502e9a0-bf47-431a-beaf-2718250723ec" + } ] + }, { + "catenaXId" : "urn:uuid:cd2e4d05-7d85-4216-9303-8061926c4b9d", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cd2e4d05-7d85-4216-9303-8061926c4b9d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-313508612117098989115967", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd2e4d05-7d85-4216-9303-8061926c4b9d", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-313508612117098989115967", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cd2e4d05-7d85-4216-9303-8061926c4b9d" ] + }, + "id" : "urn:uuid:c90a6ba9-58a0-4cc1-8927-75243e4ca357" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a", + "childItems" : [ { + "catenaXId" : "urn:uuid:8498accb-798e-4f2b-b498-d08c62abdcac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-197146400279769324044505", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-197146400279769324044505", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a" ] + }, + "id" : "urn:uuid:bb8ddd41-dd54-4ece-a7a3-72736afe08d0" + } ] + }, { + "catenaXId" : "urn:uuid:8498accb-798e-4f2b-b498-d08c62abdcac", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8498accb-798e-4f2b-b498-d08c62abdcac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-989390468216959707334931", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8498accb-798e-4f2b-b498-d08c62abdcac", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-989390468216959707334931", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8498accb-798e-4f2b-b498-d08c62abdcac" ] + }, + "id" : "urn:uuid:ee1c9d25-0f6b-4916-9cdc-0fb808cce7ab" + } ] + }, { + "catenaXId" : "urn:uuid:ccab5e8b-ff32-4644-a121-78f2509bb617", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ccab5e8b-ff32-4644-a121-78f2509bb617" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-822293588961538624864815", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ccab5e8b-ff32-4644-a121-78f2509bb617", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-822293588961538624864815", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ccab5e8b-ff32-4644-a121-78f2509bb617" ] + }, + "id" : "urn:uuid:14959095-c6c1-4b54-839b-4c51e1ae9d84" + } ] + }, { + "catenaXId" : "urn:uuid:e3eed488-e631-424b-88a2-668dfe223a26", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e3eed488-e631-424b-88a2-668dfe223a26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-247264653346269840034655", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e3eed488-e631-424b-88a2-668dfe223a26", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-247264653346269840034655", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e3eed488-e631-424b-88a2-668dfe223a26" ] + }, + "id" : "urn:uuid:811ca4ee-aeb4-43f4-a7ca-42abe6c043f8" + } ] + }, { + "catenaXId" : "urn:uuid:87c77597-8936-426d-bee8-56bd55b7b9aa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:87c77597-8936-426d-bee8-56bd55b7b9aa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-932819014427666920125123", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:87c77597-8936-426d-bee8-56bd55b7b9aa", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-932819014427666920125123", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:87c77597-8936-426d-bee8-56bd55b7b9aa" ] + }, + "id" : "urn:uuid:53c750e9-64fa-460b-ab22-52c826c122b3" + } ] + }, { + "catenaXId" : "urn:uuid:704998a8-f4cb-4845-88a6-8244bca1ae26", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:704998a8-f4cb-4845-88a6-8244bca1ae26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-815456658448712936734311", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:704998a8-f4cb-4845-88a6-8244bca1ae26", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-815456658448712936734311", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:704998a8-f4cb-4845-88a6-8244bca1ae26" ] + }, + "id" : "urn:uuid:5f5c9b9d-ebf3-4604-a5f0-0adcbd25624e" + } ] + }, { + "catenaXId" : "urn:uuid:d7a82260-0dd4-4644-a812-04eac0c52bf4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d7a82260-0dd4-4644-a812-04eac0c52bf4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-656487527328431803958772", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d7a82260-0dd4-4644-a812-04eac0c52bf4", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-656487527328431803958772", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d7a82260-0dd4-4644-a812-04eac0c52bf4" ] + }, + "id" : "urn:uuid:c8a0ddda-77a2-4557-88d4-0c16b3c52cb4" + } ] + }, { + "catenaXId" : "urn:uuid:20b62ec3-20a3-4420-9135-e7f309e43bc7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:20b62ec3-20a3-4420-9135-e7f309e43bc7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-456153439475931951654085", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:20b62ec3-20a3-4420-9135-e7f309e43bc7", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-456153439475931951654085", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:20b62ec3-20a3-4420-9135-e7f309e43bc7" ] + }, + "id" : "urn:uuid:3260d867-a4ca-414a-9e30-0a92b60b16b0" + } ] + }, { + "catenaXId" : "urn:uuid:6efaa21d-d2a9-433e-922b-cb73bda7be67", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6efaa21d-d2a9-433e-922b-cb73bda7be67" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-793329087197935543560035", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6efaa21d-d2a9-433e-922b-cb73bda7be67", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-793329087197935543560035", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6efaa21d-d2a9-433e-922b-cb73bda7be67" ] + }, + "id" : "urn:uuid:02e55bc1-3230-4e74-a4cc-f0bf1e90a9d1" + } ] + }, { + "catenaXId" : "urn:uuid:d13410e5-9a80-459c-84e0-c00aa46f4899", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d13410e5-9a80-459c-84e0-c00aa46f4899" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-974855710359408896608203", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d13410e5-9a80-459c-84e0-c00aa46f4899", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-974855710359408896608203", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d13410e5-9a80-459c-84e0-c00aa46f4899" ] + }, + "id" : "urn:uuid:ecdd0cd7-63f0-4735-84eb-0b4d1fc922ed" + } ] + }, { + "catenaXId" : "urn:uuid:30b1ecf4-07e6-4f77-9303-002ef52f0934", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:30b1ecf4-07e6-4f77-9303-002ef52f0934" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-868837200866544471083402", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:30b1ecf4-07e6-4f77-9303-002ef52f0934", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-868837200866544471083402", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:30b1ecf4-07e6-4f77-9303-002ef52f0934" ] + }, + "id" : "urn:uuid:aef10e5d-3909-4ee4-90d5-9975b0a4fa25" + } ] + }, { + "catenaXId" : "urn:uuid:12340fac-5386-4166-b2a4-3d8103093ed6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:12340fac-5386-4166-b2a4-3d8103093ed6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-419208405379669725301867", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:12340fac-5386-4166-b2a4-3d8103093ed6", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-419208405379669725301867", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:12340fac-5386-4166-b2a4-3d8103093ed6" ] + }, + "id" : "urn:uuid:474f3633-300e-4692-83e3-ced0b1aab755" + } ] + }, { + "catenaXId" : "urn:uuid:f550ac0d-c149-4663-878b-6b8bb53a2bf6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f550ac0d-c149-4663-878b-6b8bb53a2bf6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-581157619984219663920018", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f550ac0d-c149-4663-878b-6b8bb53a2bf6", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-581157619984219663920018", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f550ac0d-c149-4663-878b-6b8bb53a2bf6" ] + }, + "id" : "urn:uuid:17e493db-4fde-4e89-87a4-d40825bbcb31" + } ] + }, { + "catenaXId" : "urn:uuid:4447cbd1-9a9e-418d-a4bc-ac89f059f7a2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4447cbd1-9a9e-418d-a4bc-ac89f059f7a2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-146950800083366206980944", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4447cbd1-9a9e-418d-a4bc-ac89f059f7a2", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-146950800083366206980944", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4447cbd1-9a9e-418d-a4bc-ac89f059f7a2" ] + }, + "id" : "urn:uuid:b3f14a75-5644-4491-b6f3-caf3746695e6" + } ] + }, { + "catenaXId" : "urn:uuid:0213b277-fe9f-4686-a386-6f47e393a6ed", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0213b277-fe9f-4686-a386-6f47e393a6ed" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-310891092193860820567767", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0213b277-fe9f-4686-a386-6f47e393a6ed", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-310891092193860820567767", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0213b277-fe9f-4686-a386-6f47e393a6ed" ] + }, + "id" : "urn:uuid:6d60881d-6d1a-4004-867f-f5476ad13c22" + } ] + }, { + "catenaXId" : "urn:uuid:a0a3f1ea-7e69-48ae-a546-b822537b8046", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a0a3f1ea-7e69-48ae-a546-b822537b8046" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-984575793514990833921209", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a0a3f1ea-7e69-48ae-a546-b822537b8046", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-984575793514990833921209", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a0a3f1ea-7e69-48ae-a546-b822537b8046" ] + }, + "id" : "urn:uuid:c729296f-f89f-426e-bcda-ba0a3a6eb632" + } ] + }, { + "catenaXId" : "urn:uuid:2bf6e90e-c9d9-4bc9-8ab7-e56ce3b9d060", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2bf6e90e-c9d9-4bc9-8ab7-e56ce3b9d060" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-419449107312804701987721", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2bf6e90e-c9d9-4bc9-8ab7-e56ce3b9d060", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-419449107312804701987721", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2bf6e90e-c9d9-4bc9-8ab7-e56ce3b9d060" ] + }, + "id" : "urn:uuid:63a07f5b-17f8-40d6-a3bb-68e9c259d37e" + } ] + }, { + "catenaXId" : "urn:uuid:c8f0ea47-2774-4dd4-ac84-1abc35433250", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c8f0ea47-2774-4dd4-ac84-1abc35433250" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-177589606500869361760293", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c8f0ea47-2774-4dd4-ac84-1abc35433250", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-177589606500869361760293", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c8f0ea47-2774-4dd4-ac84-1abc35433250" ] + }, + "id" : "urn:uuid:4310bd9c-c999-49b4-9d69-c225dc3eed69" + } ] + }, { + "catenaXId" : "urn:uuid:578689e4-a80f-4952-91b3-799d5140f8ab", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:578689e4-a80f-4952-91b3-799d5140f8ab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-171201047109990932884862", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:578689e4-a80f-4952-91b3-799d5140f8ab", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-171201047109990932884862", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:578689e4-a80f-4952-91b3-799d5140f8ab" ] + }, + "id" : "urn:uuid:6aa3fab1-4926-475e-8977-5e3ca24e28cb" + } ] + }, { + "catenaXId" : "urn:uuid:a5051b48-48a8-4697-9067-f7016b0c8421", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a5051b48-48a8-4697-9067-f7016b0c8421" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-262221443739021754879536", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a5051b48-48a8-4697-9067-f7016b0c8421", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-262221443739021754879536", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a5051b48-48a8-4697-9067-f7016b0c8421" ] + }, + "id" : "urn:uuid:d59e95ec-2164-40c7-a0e4-3897827ddffe" + } ] + }, { + "catenaXId" : "urn:uuid:e7a64b63-b518-4ea7-ba39-3c9306c12f9d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e7a64b63-b518-4ea7-ba39-3c9306c12f9d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-991498314147080421876578", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e7a64b63-b518-4ea7-ba39-3c9306c12f9d", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-991498314147080421876578", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e7a64b63-b518-4ea7-ba39-3c9306c12f9d" ] + }, + "id" : "urn:uuid:b7fc8ce4-ea63-48ff-a71f-6f64f0e3fe8a" + } ] + }, { + "catenaXId" : "urn:uuid:172c7fc5-59dc-4959-bbdf-93dfd2493504", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:172c7fc5-59dc-4959-bbdf-93dfd2493504" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-484727910931958839049025", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:172c7fc5-59dc-4959-bbdf-93dfd2493504", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-484727910931958839049025", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:172c7fc5-59dc-4959-bbdf-93dfd2493504" ] + }, + "id" : "urn:uuid:5e1e300b-0c0f-4595-a401-1c59ed48abdf" + } ] + }, { + "catenaXId" : "urn:uuid:79da6a80-19a0-4552-b5bd-754416af6242", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:79da6a80-19a0-4552-b5bd-754416af6242" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-105804073788654666436574", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:79da6a80-19a0-4552-b5bd-754416af6242", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-105804073788654666436574", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:79da6a80-19a0-4552-b5bd-754416af6242" ] + }, + "id" : "urn:uuid:1eb43d84-d96f-4491-8f89-b4b499b8e0b4" + } ] + }, { + "catenaXId" : "urn:uuid:23ab16fd-e8bc-46c2-a44c-9d951f55b6f0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:23ab16fd-e8bc-46c2-a44c-9d951f55b6f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-917677233386551991949459", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:23ab16fd-e8bc-46c2-a44c-9d951f55b6f0", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-917677233386551991949459", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:23ab16fd-e8bc-46c2-a44c-9d951f55b6f0" ] + }, + "id" : "urn:uuid:e09ef566-6fcd-41c7-af53-2d5bddee2864" + } ] + }, { + "catenaXId" : "urn:uuid:4e21ffa2-e6cc-42bc-b863-fb94d6f3b87b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4e21ffa2-e6cc-42bc-b863-fb94d6f3b87b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-456924724674010432299401", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4e21ffa2-e6cc-42bc-b863-fb94d6f3b87b", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-456924724674010432299401", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4e21ffa2-e6cc-42bc-b863-fb94d6f3b87b" ] + }, + "id" : "urn:uuid:1f02ee34-2592-466b-b220-f6d8a640480b" + } ] + }, { + "catenaXId" : "urn:uuid:f957021c-207b-4f71-ba76-12b05e7e0990", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f957021c-207b-4f71-ba76-12b05e7e0990" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-746250184824712671196082", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f957021c-207b-4f71-ba76-12b05e7e0990", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-746250184824712671196082", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f957021c-207b-4f71-ba76-12b05e7e0990" ] + }, + "id" : "urn:uuid:248fa46b-8a83-4c01-96d9-730aa7a00b11" + } ] + }, { + "catenaXId" : "urn:uuid:701122f8-8378-4cdd-b960-5f457b78d2c0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:701122f8-8378-4cdd-b960-5f457b78d2c0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-814690352672205134910885", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:701122f8-8378-4cdd-b960-5f457b78d2c0", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-814690352672205134910885", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:701122f8-8378-4cdd-b960-5f457b78d2c0" ] + }, + "id" : "urn:uuid:62c4f9c1-6ebf-49e9-8a78-42bd3ba93b44" + } ] + }, { + "catenaXId" : "urn:uuid:bcdac515-ca3f-4c41-b578-63d9afac1120", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bcdac515-ca3f-4c41-b578-63d9afac1120" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-610269292449492270257916", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bcdac515-ca3f-4c41-b578-63d9afac1120", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-610269292449492270257916", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bcdac515-ca3f-4c41-b578-63d9afac1120" ] + }, + "id" : "urn:uuid:9348333f-e721-4477-b60f-3ee626ed3945" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", + "childItems" : [ { + "catenaXId" : "urn:uuid:a4a729c9-96b8-43b9-ac32-ee9979304e66", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e19f47a5-6888-415e-b322-ee3999fe5dc3", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-833665882405870757748230", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-833665882405870757748230", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-833665882405870757748230", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733" ] + }, + "id" : "urn:uuid:0380a208-0cf8-48a3-a250-ecaf515f18d5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 89, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 78, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 21, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a4a729c9-96b8-43b9-ac32-ee9979304e66", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a4a729c9-96b8-43b9-ac32-ee9979304e66" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "38405G9-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-888163373117129418802912", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a4a729c9-96b8-43b9-ac32-ee9979304e66", + "partTypeInformation" : { + "manufacturerPartId" : "38405G9-08", + "customerPartId" : "38405G9-08", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 49, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 88, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6a52729-d91e-46ef-a013-fe627d6ff2c7", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "89742C0-65", + "key" : "manufacturerPartId" + }, { + "value" : "NO-168626833119085861063423", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b", + "partTypeInformation" : { + "manufacturerPartId" : "89742C0-65", + "customerPartId" : "89742C0-65", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-168626833119085861063423", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "89742C0-65", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b" ] + }, + "id" : "urn:uuid:0a964fbb-5638-4954-af11-8880e8ed9633" + } ] + }, { + "catenaXId" : "urn:uuid:c6a52729-d91e-46ef-a013-fe627d6ff2c7", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c6a52729-d91e-46ef-a013-fe627d6ff2c7" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "54415Q5-22", + "key" : "manufacturerPartId" + }, { + "value" : "NO-994396020653426811697689", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c6a52729-d91e-46ef-a013-fe627d6ff2c7", + "partTypeInformation" : { + "manufacturerPartId" : "54415Q5-22", + "customerPartId" : "54415Q5-22", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 3, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 56, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e19f47a5-6888-415e-b322-ee3999fe5dc3", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:e19f47a5-6888-415e-b322-ee3999fe5dc3", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e19f47a5-6888-415e-b322-ee3999fe5dc3" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "35639R2-56", + "key" : "manufacturerPartId" + }, { + "value" : "NO-778327610635077834875271", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e19f47a5-6888-415e-b322-ee3999fe5dc3", + "partTypeInformation" : { + "manufacturerPartId" : "35639R2-56", + "customerPartId" : "35639R2-56", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9", + "childItems" : [ { + "catenaXId" : "urn:uuid:39413240-eecd-4379-8c0e-a5d074178b5d", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4ffded1a-2e22-44b9-804d-3c72189bf83f", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "25187I0-22", + "key" : "manufacturerPartId" + }, { + "value" : "NO-918938757434569855611407", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9", + "partTypeInformation" : { + "manufacturerPartId" : "25187I0-22", + "customerPartId" : "25187I0-22", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-918938757434569855611407", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "25187I0-22", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9" ] + }, + "id" : "urn:uuid:133fa04a-c50a-4bf9-ba75-0d3badf023dc" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 75, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:39413240-eecd-4379-8c0e-a5d074178b5d", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:39413240-eecd-4379-8c0e-a5d074178b5d" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "01870L0-06", + "key" : "manufacturerPartId" + }, { + "value" : "NO-714391761662628279785334", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:39413240-eecd-4379-8c0e-a5d074178b5d", + "partTypeInformation" : { + "manufacturerPartId" : "01870L0-06", + "customerPartId" : "01870L0-06", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 77, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 13, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04", + "childItems" : [ { + "catenaXId" : "urn:uuid:31a8318a-40f3-4b00-8edf-47fb05bf4152", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "23541W9-88", + "key" : "manufacturerPartId" + }, { + "value" : "NO-305797942517735742271244", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04", + "partTypeInformation" : { + "manufacturerPartId" : "23541W9-88", + "customerPartId" : "23541W9-88", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-305797942517735742271244", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "23541W9-88", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04" ] + }, + "id" : "urn:uuid:517efaac-27d9-4960-a81d-30cfb272a042" + } ] + }, { + "catenaXId" : "urn:uuid:31a8318a-40f3-4b00-8edf-47fb05bf4152", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:31a8318a-40f3-4b00-8edf-47fb05bf4152" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "54573F0-70", + "key" : "manufacturerPartId" + }, { + "value" : "NO-937526718403942501177072", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:31a8318a-40f3-4b00-8edf-47fb05bf4152", + "partTypeInformation" : { + "manufacturerPartId" : "54573F0-70", + "customerPartId" : "54573F0-70", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 62, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 7, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:4ffded1a-2e22-44b9-804d-3c72189bf83f", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4ffded1a-2e22-44b9-804d-3c72189bf83f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "54116Q4-52", + "key" : "manufacturerPartId" + }, { + "value" : "NO-630269708676818073850262", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4ffded1a-2e22-44b9-804d-3c72189bf83f", + "partTypeInformation" : { + "manufacturerPartId" : "54116Q4-52", + "customerPartId" : "54116Q4-52", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-630269708676818073850262", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54116Q4-52", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4ffded1a-2e22-44b9-804d-3c72189bf83f" ] + }, + "id" : "urn:uuid:b26995dc-0675-42a5-a048-a441cd2a5d88" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 70, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 10, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "childItems" : [ { + "catenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-587399385226604009234171", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-587399385226604009234171", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0" ] + }, + "id" : "urn:uuid:209fcddb-4053-4e2b-a0cb-86d4145c98a6" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 19, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 69, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 43, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-131649781070958711858421", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-131649781070958711858421", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, + "id" : "urn:uuid:a87f1e21-3a37-4ec7-8668-38d476c470a8" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 26, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 32, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 53, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-872522147913639203966037", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-872522147913639203966037", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd" ] + }, + "id" : "urn:uuid:4a98e8ff-6d2b-4dc1-83b2-1c2f056b47ad" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-17T17:55:25.702Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T10:36:58.702Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-152478763841813467173619", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-152478763841813467173619", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631" ] + }, + "id" : "urn:uuid:333a6034-b05c-463c-a1b8-77ad1a1d4dbf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-16T16:53:05.712Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T10:52:15.712Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-071220914917490301940589", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-071220914917490301940589", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433" ] + }, + "id" : "urn:uuid:6daa8220-55d1-4103-a7e6-c8ed7965e47e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-28T11:17:30.721Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T08:14:56.721Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-992654414786682445156416", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-992654414786682445156416", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392" ] + }, + "id" : "urn:uuid:5ba78319-a506-4011-a465-0109fcf6f9ea" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-02-17T06:50:35.731Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T07:43:58.731Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-957868041910748361688897", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-957868041910748361688897", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6" ] + }, + "id" : "urn:uuid:5fa83e82-f149-45db-9327-92a79be0621d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-06-10T14:31:28.740Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T15:51:32.740Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-998381264973015587880704", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-998381264973015587880704", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c" ] + }, + "id" : "urn:uuid:4057f439-899a-47c6-a7d3-5eb219363d40" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-13T22:13:43.749Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T00:00:31.749Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-509162048318428911401644", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-509162048318428911401644", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c" ] + }, + "id" : "urn:uuid:e13627a6-21d0-4fff-ae46-91d34d3e8a61" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-15T21:38:39.759Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T20:44:05.759Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-082353190461485044817523", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-082353190461485044817523", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4" ] + }, + "id" : "urn:uuid:9839a0d2-ad3a-4839-a3d8-03156b23ccd1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-29T23:15:14.771Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T04:45:39.771Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-893109040034142062703296", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-893109040034142062703296", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a" ] + }, + "id" : "urn:uuid:fcfeed00-3e04-4726-8441-a9af59a6f540" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-05-09T04:22:12.782Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T08:53:26.782Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-196971260452303574662703", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-196971260452303574662703", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df" ] + }, + "id" : "urn:uuid:291cbe18-8dd6-4eb1-82b2-ecf06a64b9a0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-10-22T15:54:34.793Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T06:44:37.793Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-563541508023311746445903", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-563541508023311746445903", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, + "id" : "urn:uuid:f6ce8834-2be4-4beb-b0b9-032a8debe46a" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 56, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 31, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 27, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-729917661222233475178018", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-729917661222233475178018", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4" ] + }, + "id" : "urn:uuid:d426472d-2253-4969-bb9f-e39da574cd4b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-03-15T10:03:46.814Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T15:46:16.814Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-065382960035305663821583", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-065382960035305663821583", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406" ] + }, + "id" : "urn:uuid:e0a9dbfe-8d38-47da-bc3a-5882b3e87e5b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-16T04:00:24.824Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T19:44:46.824Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-748365703638943929377099", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-748365703638943929377099", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09" ] + }, + "id" : "urn:uuid:1e82819c-59dc-49ea-93b8-2658aed66868" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-11T12:50:36.834Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T08:41:19.834Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-853309412127532827193384", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-853309412127532827193384", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5" ] + }, + "id" : "urn:uuid:82fb0eb1-62d9-428f-b938-c5b9ab5d04a4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-15T02:28:46.844Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T15:21:41.844Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-229548819618974854866415", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-229548819618974854866415", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5" ] + }, + "id" : "urn:uuid:3923301b-3a60-4990-9c17-831645028fd9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-04-25T06:52:39.853Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T11:45:20.853Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-387864983936092412362087", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-387864983936092412362087", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3" ] + }, + "id" : "urn:uuid:367c0ef7-953c-4122-8bf5-13980e555c22" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-13T21:18:12.863Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T13:11:01.863Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-524153707892249910039388", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-524153707892249910039388", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96" ] + }, + "id" : "urn:uuid:60c22bb9-69d7-40f1-9def-3701a9863812" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-25T07:57:03.873Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T16:42:33.873Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-071448142079869292752845", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-071448142079869292752845", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b" ] + }, + "id" : "urn:uuid:e8ce63c7-0cec-458a-a98b-ceb9f2fa5023" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-29T11:10:43.883Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T12:36:25.883Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-716732451499286855669667", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-716732451499286855669667", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122" ] + }, + "id" : "urn:uuid:29cd59e4-8108-43c1-929b-904f43ee076b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-10T21:17:43.893Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T21:15:40.893Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-115953088574363390412028", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-115953088574363390412028", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0" ] + }, + "id" : "urn:uuid:dfd05d46-f97a-4133-92ce-c744d2531065" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-08T18:32:49.902Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T22:24:43.902Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-705171338407774584398436", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-705171338407774584398436", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, + "id" : "urn:uuid:60ffa8e8-437c-4a48-9f81-10d49cf89b8f" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 42, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 49, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 60, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-773577629259197216039061", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-773577629259197216039061", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40" ] + }, + "id" : "urn:uuid:240d4543-b63f-4f1a-a555-fb925ffc8c5b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-30T14:53:47.921Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T06:59:44.921Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-479022281306369997507840", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-479022281306369997507840", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6" ] + }, + "id" : "urn:uuid:c3163c63-2bf4-43d0-a893-d8bff9abb723" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-25T01:19:29.930Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T00:51:00.930Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-513791408672634448543604", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-513791408672634448543604", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39" ] + }, + "id" : "urn:uuid:5823b471-5606-4c3a-88b1-a77624a1b28d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-27T17:36:26.940Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T03:15:14.940Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-909586791173410838278966", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-909586791173410838278966", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf" ] + }, + "id" : "urn:uuid:402ecbda-d5db-4375-8ff7-618026f3adbd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-31T11:50:40.949Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T18:45:29.949Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-075537519032458748386554", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-075537519032458748386554", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7" ] + }, + "id" : "urn:uuid:b7e375f3-c689-4a58-84e6-13bbbb54994b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-08-24T16:07:46.958Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T08:53:30.958Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-456028493026260840755379", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-456028493026260840755379", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842" ] + }, + "id" : "urn:uuid:d648b254-7575-4c66-8ef0-05afd99c9688" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-03-22T02:17:52.967Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T07:54:42.967Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-968942475701753884770068", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-968942475701753884770068", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de" ] + }, + "id" : "urn:uuid:02aa2dd5-9979-4daa-bd83-c0e4aeab2c1b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-23T13:10:05.976Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T18:43:49.976Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-000786385769565603176369", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-000786385769565603176369", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da" ] + }, + "id" : "urn:uuid:88918112-d626-45ac-bb9e-181ce9472681" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-04-16T20:18:36.986Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T01:25:20.986Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-186284144017945363099133", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-186284144017945363099133", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649" ] + }, + "id" : "urn:uuid:c94be0b6-b449-43c8-87cc-963fdb7d5e55" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-11T09:55:02.995Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T05:32:49.995Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-169302659791399146219083", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-169302659791399146219083", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7" ] + }, + "id" : "urn:uuid:ee06166e-dca3-4808-bfd6-c00ffcacf775" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-06T01:03:26.004Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T06:09:12.004Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-547668005767416159053822", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-547668005767416159053822", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, + "id" : "urn:uuid:47c718be-a07e-49ee-ab29-6f695ea8e0d7" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 46, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 43, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 16, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-412385836050889703070914", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-412385836050889703070914", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49" ] + }, + "id" : "urn:uuid:8b3848cc-69a9-49ac-9be1-5bfdd5e4ad82" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-09T12:25:40.023Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T16:37:23.023Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-608271891935270566922567", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-608271891935270566922567", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8" ] + }, + "id" : "urn:uuid:74e4fef2-a7da-4cd4-adc1-445458b3ada8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-28T23:13:05.033Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T15:46:44.033Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-375519595996232932357978", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-375519595996232932357978", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58" ] + }, + "id" : "urn:uuid:e6538b28-f773-45ca-965d-e1df55ea3f3a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-31T12:03:19.041Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T00:35:43.041Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-308011633411992964810902", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-308011633411992964810902", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983" ] + }, + "id" : "urn:uuid:487ad473-f13f-415f-a5e1-68f1fa8118d1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-01T23:28:48.050Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T02:25:08.050Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-100691633638592871092296", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-100691633638592871092296", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403" ] + }, + "id" : "urn:uuid:cf1dae37-85cf-4b43-bf14-57c441ff4039" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-19T18:52:10.059Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T04:04:01.059Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-787647586054971189903778", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-787647586054971189903778", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55" ] + }, + "id" : "urn:uuid:b1b5c007-3dcd-4425-9e03-382f98d8c3e7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-22T00:42:40.068Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T09:40:44.068Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-752394060554976315066129", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-752394060554976315066129", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1" ] + }, + "id" : "urn:uuid:989e6226-e562-4956-b49c-6b23a4a6a9bf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-06T17:29:51.077Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T03:37:04.077Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-333686391372725560486530", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-333686391372725560486530", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157" ] + }, + "id" : "urn:uuid:0d537085-4dcc-49b8-b7b4-f90a9f66dce3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-14T06:09:29.086Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T02:52:32.086Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-006576773500936918169304", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-006576773500936918169304", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac" ] + }, + "id" : "urn:uuid:08190fc9-aea6-4c39-b3e1-d2172c3153b0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-10-12T06:16:18.095Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T06:46:54.095Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-147659639795174505726545", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-147659639795174505726545", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5" ] + }, + "id" : "urn:uuid:ca9a7cbd-7333-45bc-b619-1a6028825f45" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-07-15T22:15:57.104Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T22:48:02.104Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-968252928678365823760979", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-968252928678365823760979", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, + "id" : "urn:uuid:cf059a2a-7bf3-46e9-9fba-e0d9c8daedf1" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 73, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 28, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 79, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-253915379156680116843392", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-253915379156680116843392", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453" ] + }, + "id" : "urn:uuid:cc56aeaa-7b61-4a0a-81a8-577e4bd51c53" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-19T03:11:58.122Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T22:21:53.122Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-568487586740694256245242", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-568487586740694256245242", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe" ] + }, + "id" : "urn:uuid:9fb9c0a1-04f4-4701-b29a-9ff096ad0da9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-25T14:11:16.131Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T13:40:31.131Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-269629440101001913720453", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-269629440101001913720453", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3" ] + }, + "id" : "urn:uuid:8f94fa7b-ade0-4bd8-afd7-811fa895ce23" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-07-17T14:35:44.140Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T11:40:59.140Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-575568085117877815906424", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-575568085117877815906424", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca" ] + }, + "id" : "urn:uuid:fec55529-90aa-4644-8897-6012057ea76e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-03-28T17:17:55.149Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T01:50:33.149Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-658581481732633160465741", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-658581481732633160465741", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517" ] + }, + "id" : "urn:uuid:ccc77819-cb6b-4251-8b58-d60a303f5251" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-12T21:29:09.158Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T04:58:04.158Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-867248842664430159130247", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-867248842664430159130247", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d" ] + }, + "id" : "urn:uuid:5dcbdc44-b164-4f64-8446-8c96e7898c06" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-05T05:21:17.166Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T12:37:46.166Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-025974691789649934885057", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-025974691789649934885057", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793" ] + }, + "id" : "urn:uuid:c8262b95-f6d1-4943-9183-7f6da7bbd7b1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-17T09:33:12.175Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T00:33:48.175Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-513906278647608022011765", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-513906278647608022011765", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465" ] + }, + "id" : "urn:uuid:27218b21-8c62-4143-9f37-b092a7b6e77b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-06T06:46:30.184Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T17:05:01.184Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-708763254659197301850167", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-708763254659197301850167", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967" ] + }, + "id" : "urn:uuid:59626848-28d7-4b8f-be85-836367318959" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-18T15:27:24.195Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T03:09:22.195Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-591803360628410894187268", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-591803360628410894187268", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997" ] + }, + "id" : "urn:uuid:f2b0aa65-6b83-4f0c-bfa8-3e4a94f6291d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-22T04:56:16.206Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T06:15:07.206Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-933817945635266945725976", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-933817945635266945725976", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, + "id" : "urn:uuid:bae09c00-9c5c-413b-b9c1-ef07c2247cf2" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 81, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 63, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 32, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-125427765229402915020019", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-125427765229402915020019", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a" ] + }, + "id" : "urn:uuid:bd213f44-9f69-46b6-a964-03b5d96fb184" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-12T14:20:30.224Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T09:21:53.224Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-633237946020757512630609", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-633237946020757512630609", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999" ] + }, + "id" : "urn:uuid:5be897c9-48f8-4c56-b5a8-4622a816c5b9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-07-04T00:18:04.234Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T05:11:56.234Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-580159112882347579537061", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-580159112882347579537061", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f" ] + }, + "id" : "urn:uuid:db5d441c-0483-4f97-9f2b-38c476884e42" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-17T03:48:06.244Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T18:22:46.244Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-108125390762212854839950", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-108125390762212854839950", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab" ] + }, + "id" : "urn:uuid:130e5a62-646f-4a84-b4b8-9e0df62d7318" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-04-10T21:26:48.254Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T20:27:06.254Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-697154936050026188725849", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-697154936050026188725849", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc" ] + }, + "id" : "urn:uuid:9b681bad-55f3-47b6-8634-7c62a1288b6b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-22T08:22:23.263Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T07:11:03.263Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-701194669258526671176587", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-701194669258526671176587", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155" ] + }, + "id" : "urn:uuid:e5fc28c5-00d9-4ac3-a0d7-272589aed8a7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-03-15T11:17:44.272Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T22:21:14.272Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-022790582686903594442595", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-022790582686903594442595", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302" ] + }, + "id" : "urn:uuid:f03425dd-ff05-4065-9ef9-519ebd432dad" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-15T11:20:18.281Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T20:18:28.281Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-586507412875433396987647", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-586507412875433396987647", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d" ] + }, + "id" : "urn:uuid:ab22efa5-5857-41f9-90b6-ad1aa2949e3e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-01T18:25:34.291Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T07:53:40.291Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-673702999277250544332898", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-673702999277250544332898", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83" ] + }, + "id" : "urn:uuid:7d4cea67-04c7-4c12-9fb0-e1b5567d8434" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-02-06T16:31:48.300Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T13:50:15.300Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-289797703529130817904168", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-289797703529130817904168", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81" ] + }, + "id" : "urn:uuid:a1a5cc7b-6276-4266-b240-4d2610f0c7ef" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-26T22:36:53.309Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T13:16:33.309Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "electric", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + }, { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + }, { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "childItems" : [ { + "catenaXId" : "urn:uuid:5c6ecb23-8ebe-48cb-8f0f-c643253ae0a0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a65e4da-1be7-4f8e-92ab-a89890cef613", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b30292ef-5a7a-4962-ac6e-ae444f72eaa6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa865787-040d-43e3-a54a-9853f3bdfb13", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6260a6d1-edff-4809-9077-db3a0ebedf65", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04b45fe5-58df-46b8-ac71-09022a6d0a23", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6005cfdf-fdb6-44e2-a41a-7011d10c936c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9563f6a3-d44a-42a7-8692-6c06ea802d4e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e4fdb8c5-ad96-46fd-a03a-2741ab629452", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:92082020-c30e-4a2a-99b5-6e1f4e10e7c1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8181e7be-ea40-4932-8c2d-720a48dd2e26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7a12879c-ac7b-4f12-8e3f-b5168265c44a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:60a029cf-cff9-4de1-b814-8112b4ead680", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:136bccf8-17b6-433a-aac6-40935a4a8311", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e3f25d7f-8f34-4d67-a7d8-e84d5c4fe216", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eaed6ab3-da02-40b6-928d-5fec822c2a15", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8f38a4e8-6459-4d47-a620-f23440dabca7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be628c13-7180-4df2-aaa0-a4d2d7bb86a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:86a9803f-8ff7-4edb-a209-44a4da4d1c28", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ffaeeab2-8828-4d6c-b358-1fa5b84d7433", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d46ad917-150d-4e12-96cc-1dd1a6bc004b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5005827a-b853-42b2-bb2d-70d1b82f5861", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c8b0f0f4-ac94-47c2-8c34-c4e81995ceaf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a96d8269-80fa-4ea1-9a25-63821e98dd6c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:725d5c01-22e1-44d2-8c16-55713f6d6c93", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4f624c91-519c-4961-af5d-0d81371984b7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8c01e174-87b8-4969-82ba-07bef629000d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "TR-17", + "key" : "manufacturerPartId" + }, { + "value" : "OMBYENOOFWHIFUBUE", + "key" : "partInstanceId" + }, { + "value" : "OMBYENOOFWHIFUBUE", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2018-10-05T01:17:31.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "partTypeInformation" : { + "manufacturerPartId" : "TR-17", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMBYENOOFWHIFUBUE", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "TR-17", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_fully_electric.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Fully Electric" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, + "id" : "urn:uuid:80907c15-bfde-48f6-8903-016a03b0ddd6" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 77, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 78, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 79, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 28, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 51, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 83, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 57, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 29, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 48, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 60, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5c6ecb23-8ebe-48cb-8f0f-c643253ae0a0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5c6ecb23-8ebe-48cb-8f0f-c643253ae0a0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-057891130100631498221704", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5c6ecb23-8ebe-48cb-8f0f-c643253ae0a0", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-057891130100631498221704", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5c6ecb23-8ebe-48cb-8f0f-c643253ae0a0" ] + }, + "id" : "urn:uuid:821fd2a2-15b1-447a-bc2c-a4fbfde6c686" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69", + "childItems" : [ { + "catenaXId" : "urn:uuid:ee644095-5b98-4809-b738-cbf217a58fc5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-160459747357200882256406", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-160459747357200882256406", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69" ] + }, + "id" : "urn:uuid:65c3d35a-dd5b-4743-824b-b4317ac60889" + } ] + }, { + "catenaXId" : "urn:uuid:ee644095-5b98-4809-b738-cbf217a58fc5", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ee644095-5b98-4809-b738-cbf217a58fc5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-891138843361997288700202", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ee644095-5b98-4809-b738-cbf217a58fc5", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-891138843361997288700202", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ee644095-5b98-4809-b738-cbf217a58fc5" ] + }, + "id" : "urn:uuid:21197245-4ad8-4b87-9a0d-8c82052e4358" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4", + "childItems" : [ { + "catenaXId" : "urn:uuid:b5419e41-d580-4f99-bf28-fd9b68c56239", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-326623958266956130086696", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-326623958266956130086696", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4" ] + }, + "id" : "urn:uuid:199f164d-ffc2-41fe-a266-ce65f0eebde4" + } ] + }, { + "catenaXId" : "urn:uuid:b5419e41-d580-4f99-bf28-fd9b68c56239", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b5419e41-d580-4f99-bf28-fd9b68c56239" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-747470928549630965968092", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b5419e41-d580-4f99-bf28-fd9b68c56239", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-747470928549630965968092", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b5419e41-d580-4f99-bf28-fd9b68c56239" ] + }, + "id" : "urn:uuid:e1063268-ce24-4306-ba55-dee30a9d0e3d" + } ] + }, { + "catenaXId" : "urn:uuid:0a65e4da-1be7-4f8e-92ab-a89890cef613", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a65e4da-1be7-4f8e-92ab-a89890cef613" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-075150109682806716079971", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a65e4da-1be7-4f8e-92ab-a89890cef613", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-075150109682806716079971", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a65e4da-1be7-4f8e-92ab-a89890cef613" ] + }, + "id" : "urn:uuid:b90e9d64-81e6-447d-bad6-06c5e91fdd2d" + } ] + }, { + "catenaXId" : "urn:uuid:b30292ef-5a7a-4962-ac6e-ae444f72eaa6", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b30292ef-5a7a-4962-ac6e-ae444f72eaa6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-498190023857660796223125", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b30292ef-5a7a-4962-ac6e-ae444f72eaa6", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-498190023857660796223125", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b30292ef-5a7a-4962-ac6e-ae444f72eaa6" ] + }, + "id" : "urn:uuid:4ad39176-6179-42a3-8602-602ee69b4da8" + } ] + }, { + "catenaXId" : "urn:uuid:aa865787-040d-43e3-a54a-9853f3bdfb13", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aa865787-040d-43e3-a54a-9853f3bdfb13" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-556056727237033832476982", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aa865787-040d-43e3-a54a-9853f3bdfb13", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-556056727237033832476982", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:aa865787-040d-43e3-a54a-9853f3bdfb13" ] + }, + "id" : "urn:uuid:451a00e4-16e6-4f66-a609-b7d7fa509970" + } ] + }, { + "catenaXId" : "urn:uuid:6260a6d1-edff-4809-9077-db3a0ebedf65", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6260a6d1-edff-4809-9077-db3a0ebedf65" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-783022314165963132520085", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6260a6d1-edff-4809-9077-db3a0ebedf65", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-783022314165963132520085", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6260a6d1-edff-4809-9077-db3a0ebedf65" ] + }, + "id" : "urn:uuid:6c30ff19-e7f3-4167-b92a-7a9702157065" + } ] + }, { + "catenaXId" : "urn:uuid:04b45fe5-58df-46b8-ac71-09022a6d0a23", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:04b45fe5-58df-46b8-ac71-09022a6d0a23" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-909730481894597237249220", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04b45fe5-58df-46b8-ac71-09022a6d0a23", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-909730481894597237249220", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:04b45fe5-58df-46b8-ac71-09022a6d0a23" ] + }, + "id" : "urn:uuid:d05dcfbc-4281-4a3e-8425-7e6fd5c9c0e8" + } ] + }, { + "catenaXId" : "urn:uuid:6005cfdf-fdb6-44e2-a41a-7011d10c936c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6005cfdf-fdb6-44e2-a41a-7011d10c936c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-511483630244641664294528", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6005cfdf-fdb6-44e2-a41a-7011d10c936c", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-511483630244641664294528", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6005cfdf-fdb6-44e2-a41a-7011d10c936c" ] + }, + "id" : "urn:uuid:a13bfda9-9f7d-451b-b9d5-18f0fae331f1" + } ] + }, { + "catenaXId" : "urn:uuid:9563f6a3-d44a-42a7-8692-6c06ea802d4e", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9563f6a3-d44a-42a7-8692-6c06ea802d4e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-274901066756898018137712", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9563f6a3-d44a-42a7-8692-6c06ea802d4e", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-274901066756898018137712", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9563f6a3-d44a-42a7-8692-6c06ea802d4e" ] + }, + "id" : "urn:uuid:fafb9399-9bf1-44f0-8649-6cf1b834c211" + } ] + }, { + "catenaXId" : "urn:uuid:e4fdb8c5-ad96-46fd-a03a-2741ab629452", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e4fdb8c5-ad96-46fd-a03a-2741ab629452" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-720930604378445199366745", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e4fdb8c5-ad96-46fd-a03a-2741ab629452", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-720930604378445199366745", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e4fdb8c5-ad96-46fd-a03a-2741ab629452" ] + }, + "id" : "urn:uuid:9b397b05-3ea0-42f8-94e5-7580a16fcb93" + } ] + }, { + "catenaXId" : "urn:uuid:92082020-c30e-4a2a-99b5-6e1f4e10e7c1", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:92082020-c30e-4a2a-99b5-6e1f4e10e7c1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-242702495668653166037870", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:92082020-c30e-4a2a-99b5-6e1f4e10e7c1", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-242702495668653166037870", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:92082020-c30e-4a2a-99b5-6e1f4e10e7c1" ] + }, + "id" : "urn:uuid:db95e962-3892-410a-9f8f-3ec06f008425" + } ] + }, { + "catenaXId" : "urn:uuid:8181e7be-ea40-4932-8c2d-720a48dd2e26", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8181e7be-ea40-4932-8c2d-720a48dd2e26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-137171360654705241091006", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8181e7be-ea40-4932-8c2d-720a48dd2e26", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-137171360654705241091006", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8181e7be-ea40-4932-8c2d-720a48dd2e26" ] + }, + "id" : "urn:uuid:37259e21-0cfa-4afb-b419-0f067dcf4c04" + } ] + }, { + "catenaXId" : "urn:uuid:7a12879c-ac7b-4f12-8e3f-b5168265c44a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7a12879c-ac7b-4f12-8e3f-b5168265c44a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-362795149321687575004677", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7a12879c-ac7b-4f12-8e3f-b5168265c44a", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-362795149321687575004677", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7a12879c-ac7b-4f12-8e3f-b5168265c44a" ] + }, + "id" : "urn:uuid:2be48f7f-abdb-46bb-981c-15a81754405f" + } ] + }, { + "catenaXId" : "urn:uuid:60a029cf-cff9-4de1-b814-8112b4ead680", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:60a029cf-cff9-4de1-b814-8112b4ead680" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-994401454869260185545808", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:60a029cf-cff9-4de1-b814-8112b4ead680", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-994401454869260185545808", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:60a029cf-cff9-4de1-b814-8112b4ead680" ] + }, + "id" : "urn:uuid:fb2e9ee4-53fb-48f3-be77-bcf5f26b61c2" + } ] + }, { + "catenaXId" : "urn:uuid:136bccf8-17b6-433a-aac6-40935a4a8311", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:136bccf8-17b6-433a-aac6-40935a4a8311" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-876555416879952340756417", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:136bccf8-17b6-433a-aac6-40935a4a8311", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-876555416879952340756417", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:136bccf8-17b6-433a-aac6-40935a4a8311" ] + }, + "id" : "urn:uuid:a6e86676-341c-490b-a5bd-73c32a3b516a" + } ] + }, { + "catenaXId" : "urn:uuid:e3f25d7f-8f34-4d67-a7d8-e84d5c4fe216", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e3f25d7f-8f34-4d67-a7d8-e84d5c4fe216" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-992789481838653765956001", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e3f25d7f-8f34-4d67-a7d8-e84d5c4fe216", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-992789481838653765956001", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e3f25d7f-8f34-4d67-a7d8-e84d5c4fe216" ] + }, + "id" : "urn:uuid:5b04e12f-0669-4ea5-9c8a-0f5202176182" + } ] + }, { + "catenaXId" : "urn:uuid:eaed6ab3-da02-40b6-928d-5fec822c2a15", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eaed6ab3-da02-40b6-928d-5fec822c2a15" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-487154885564397834797129", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eaed6ab3-da02-40b6-928d-5fec822c2a15", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-487154885564397834797129", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:eaed6ab3-da02-40b6-928d-5fec822c2a15" ] + }, + "id" : "urn:uuid:c2afca56-9d9b-4b2c-b571-d93f89dcfd7f" + } ] + }, { + "catenaXId" : "urn:uuid:8f38a4e8-6459-4d47-a620-f23440dabca7", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8f38a4e8-6459-4d47-a620-f23440dabca7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-328403475257177210173497", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f38a4e8-6459-4d47-a620-f23440dabca7", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-328403475257177210173497", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8f38a4e8-6459-4d47-a620-f23440dabca7" ] + }, + "id" : "urn:uuid:6216e62a-fe51-425e-863f-c665920a0317" + } ] + }, { + "catenaXId" : "urn:uuid:be628c13-7180-4df2-aaa0-a4d2d7bb86a9", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be628c13-7180-4df2-aaa0-a4d2d7bb86a9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-640426442184940483316903", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be628c13-7180-4df2-aaa0-a4d2d7bb86a9", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-640426442184940483316903", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:be628c13-7180-4df2-aaa0-a4d2d7bb86a9" ] + }, + "id" : "urn:uuid:4f879ae8-412e-4c01-aa2d-42368f93585f" + } ] + }, { + "catenaXId" : "urn:uuid:86a9803f-8ff7-4edb-a209-44a4da4d1c28", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:86a9803f-8ff7-4edb-a209-44a4da4d1c28" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-603067938034376748326274", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:86a9803f-8ff7-4edb-a209-44a4da4d1c28", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-603067938034376748326274", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:86a9803f-8ff7-4edb-a209-44a4da4d1c28" ] + }, + "id" : "urn:uuid:b4b36541-041c-40d9-a520-a53aa03e4052" + } ] + }, { + "catenaXId" : "urn:uuid:ffaeeab2-8828-4d6c-b358-1fa5b84d7433", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ffaeeab2-8828-4d6c-b358-1fa5b84d7433" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-367223771159924761930380", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ffaeeab2-8828-4d6c-b358-1fa5b84d7433", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-367223771159924761930380", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ffaeeab2-8828-4d6c-b358-1fa5b84d7433" ] + }, + "id" : "urn:uuid:3ffef541-82e1-4cd9-abbd-79de43f7c3ec" + } ] + }, { + "catenaXId" : "urn:uuid:d46ad917-150d-4e12-96cc-1dd1a6bc004b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d46ad917-150d-4e12-96cc-1dd1a6bc004b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-815414467728150213352092", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d46ad917-150d-4e12-96cc-1dd1a6bc004b", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-815414467728150213352092", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d46ad917-150d-4e12-96cc-1dd1a6bc004b" ] + }, + "id" : "urn:uuid:b1daa14a-cb52-4ab3-94fd-4509ca5936d7" + } ] + }, { + "catenaXId" : "urn:uuid:5005827a-b853-42b2-bb2d-70d1b82f5861", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5005827a-b853-42b2-bb2d-70d1b82f5861" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-002748169022766582322564", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5005827a-b853-42b2-bb2d-70d1b82f5861", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-002748169022766582322564", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5005827a-b853-42b2-bb2d-70d1b82f5861" ] + }, + "id" : "urn:uuid:1f76d143-ea8c-4179-a370-ddddf9c434dc" + } ] + }, { + "catenaXId" : "urn:uuid:c8b0f0f4-ac94-47c2-8c34-c4e81995ceaf", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c8b0f0f4-ac94-47c2-8c34-c4e81995ceaf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-808364806651359229968514", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c8b0f0f4-ac94-47c2-8c34-c4e81995ceaf", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-808364806651359229968514", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c8b0f0f4-ac94-47c2-8c34-c4e81995ceaf" ] + }, + "id" : "urn:uuid:17ea649d-6cdf-447a-a619-f8ca6b4469ae" + } ] + }, { + "catenaXId" : "urn:uuid:a96d8269-80fa-4ea1-9a25-63821e98dd6c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a96d8269-80fa-4ea1-9a25-63821e98dd6c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-534213565181915840634264", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a96d8269-80fa-4ea1-9a25-63821e98dd6c", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-534213565181915840634264", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a96d8269-80fa-4ea1-9a25-63821e98dd6c" ] + }, + "id" : "urn:uuid:583995bd-5726-457b-909a-7900878977d4" + } ] + }, { + "catenaXId" : "urn:uuid:725d5c01-22e1-44d2-8c16-55713f6d6c93", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:725d5c01-22e1-44d2-8c16-55713f6d6c93" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-821306366456138602977413", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:725d5c01-22e1-44d2-8c16-55713f6d6c93", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-821306366456138602977413", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:725d5c01-22e1-44d2-8c16-55713f6d6c93" ] + }, + "id" : "urn:uuid:96089d87-af3d-4b6d-a84e-b4b22b3a6250" + } ] + }, { + "catenaXId" : "urn:uuid:4f624c91-519c-4961-af5d-0d81371984b7", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f624c91-519c-4961-af5d-0d81371984b7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-063555776053564942126826", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f624c91-519c-4961-af5d-0d81371984b7", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-063555776053564942126826", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4f624c91-519c-4961-af5d-0d81371984b7" ] + }, + "id" : "urn:uuid:2bd020fe-f7dd-42cf-bf36-632a3652452c" + } ] + }, { + "catenaXId" : "urn:uuid:8c01e174-87b8-4969-82ba-07bef629000d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8c01e174-87b8-4969-82ba-07bef629000d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-772105991156745636803880", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8c01e174-87b8-4969-82ba-07bef629000d", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-772105991156745636803880", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8c01e174-87b8-4969-82ba-07bef629000d" ] + }, + "id" : "urn:uuid:a03fa362-83a9-452d-bd1a-93652a7ea5b3" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", + "childItems" : [ { + "catenaXId" : "urn:uuid:8b2dcbbd-2694-4cf6-abbb-b5d5bc36b35c", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4c48949d-41de-44c9-a3d3-8bb174ac66fa", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-013542315147642649509558", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-013542315147642649509558", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-013542315147642649509558", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60" ] + }, + "id" : "urn:uuid:1bcefc76-bd6d-4700-bd74-45130301d292" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 11, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 35, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 47, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8b2dcbbd-2694-4cf6-abbb-b5d5bc36b35c", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8b2dcbbd-2694-4cf6-abbb-b5d5bc36b35c" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "42355Z3-14", + "key" : "manufacturerPartId" + }, { + "value" : "NO-188290970067589481072631", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8b2dcbbd-2694-4cf6-abbb-b5d5bc36b35c", + "partTypeInformation" : { + "manufacturerPartId" : "42355Z3-14", + "customerPartId" : "42355Z3-14", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 84, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 35, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80", + "childItems" : [ { + "catenaXId" : "urn:uuid:21879509-3454-4d59-8ec3-e5690f0337e7", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "01874L7-79", + "key" : "manufacturerPartId" + }, { + "value" : "NO-095955545545332219479236", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80", + "partTypeInformation" : { + "manufacturerPartId" : "01874L7-79", + "customerPartId" : "01874L7-79", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-095955545545332219479236", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "01874L7-79", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80" ] + }, + "id" : "urn:uuid:1a224adf-5c6a-4982-a826-38a42d103458" + } ] + }, { + "catenaXId" : "urn:uuid:21879509-3454-4d59-8ec3-e5690f0337e7", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:21879509-3454-4d59-8ec3-e5690f0337e7" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "85412R7-51", + "key" : "manufacturerPartId" + }, { + "value" : "NO-132375472573955708203766", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:21879509-3454-4d59-8ec3-e5690f0337e7", + "partTypeInformation" : { + "manufacturerPartId" : "85412R7-51", + "customerPartId" : "85412R7-51", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 23, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 85, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4c48949d-41de-44c9-a3d3-8bb174ac66fa", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:4c48949d-41de-44c9-a3d3-8bb174ac66fa", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4c48949d-41de-44c9-a3d3-8bb174ac66fa" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "20993F5-96", + "key" : "manufacturerPartId" + }, { + "value" : "NO-409820052598616194087734", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4c48949d-41de-44c9-a3d3-8bb174ac66fa", + "partTypeInformation" : { + "manufacturerPartId" : "20993F5-96", + "customerPartId" : "20993F5-96", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37", + "childItems" : [ { + "catenaXId" : "urn:uuid:1342124b-9162-43c0-9285-8d24bc567c81", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:635bf5c7-0df3-4543-b6dd-ba3a3813fe35", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "77509C9-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-397506015976225346664285", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37", + "partTypeInformation" : { + "manufacturerPartId" : "77509C9-64", + "customerPartId" : "77509C9-64", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-397506015976225346664285", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77509C9-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37" ] + }, + "id" : "urn:uuid:8a73d9b0-c195-4f2d-b151-1e609285da61" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 73, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:1342124b-9162-43c0-9285-8d24bc567c81", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1342124b-9162-43c0-9285-8d24bc567c81" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "84567Q6-90", + "key" : "manufacturerPartId" + }, { + "value" : "NO-858444868444746707701326", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1342124b-9162-43c0-9285-8d24bc567c81", + "partTypeInformation" : { + "manufacturerPartId" : "84567Q6-90", + "customerPartId" : "84567Q6-90", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 45, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 32, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a", + "childItems" : [ { + "catenaXId" : "urn:uuid:b6578651-90b2-4f7b-a0bd-4370417ca074", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "29358G9-54", + "key" : "manufacturerPartId" + }, { + "value" : "NO-890101173324814693064408", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a", + "partTypeInformation" : { + "manufacturerPartId" : "29358G9-54", + "customerPartId" : "29358G9-54", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-890101173324814693064408", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "29358G9-54", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a" ] + }, + "id" : "urn:uuid:a10677b8-38b3-45e0-987f-396b0b0a1171" + } ] + }, { + "catenaXId" : "urn:uuid:b6578651-90b2-4f7b-a0bd-4370417ca074", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b6578651-90b2-4f7b-a0bd-4370417ca074" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "14420V1-55", + "key" : "manufacturerPartId" + }, { + "value" : "NO-731008473025095122566384", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b6578651-90b2-4f7b-a0bd-4370417ca074", + "partTypeInformation" : { + "manufacturerPartId" : "14420V1-55", + "customerPartId" : "14420V1-55", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 8, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 15, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:635bf5c7-0df3-4543-b6dd-ba3a3813fe35", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:635bf5c7-0df3-4543-b6dd-ba3a3813fe35" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "50543S7-96", + "key" : "manufacturerPartId" + }, { + "value" : "NO-317162516992148438853755", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:635bf5c7-0df3-4543-b6dd-ba3a3813fe35", + "partTypeInformation" : { + "manufacturerPartId" : "50543S7-96", + "customerPartId" : "50543S7-96", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-317162516992148438853755", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "50543S7-96", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:635bf5c7-0df3-4543-b6dd-ba3a3813fe35" ] + }, + "id" : "urn:uuid:1239ed18-d105-496e-a8e1-a032d6699bb0" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 10, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 83, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-359646626308456509377790", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-359646626308456509377790", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8" ] + }, + "id" : "urn:uuid:2db53ddd-0fdd-4a75-a834-aa8cddeba5c1" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 51, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 30, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-737916602082729221893650", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-737916602082729221893650", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, + "id" : "urn:uuid:708d6125-5e5b-4eaa-8a13-40428c6b8fa0" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 59, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 37, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 80, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-161788445549960078642373", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-161788445549960078642373", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903" ] + }, + "id" : "urn:uuid:2f0d05f4-1d90-4e23-92e9-8f50bb95b10c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-01T20:28:04.461Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T00:09:46.461Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-228486670160463176497354", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-228486670160463176497354", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2" ] + }, + "id" : "urn:uuid:d26988ae-5b39-4765-812e-aaa0ea90b334" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-09T09:11:05.470Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T05:47:43.470Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-181701496507785767686375", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-181701496507785767686375", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b" ] + }, + "id" : "urn:uuid:ff215584-5120-4007-ad5f-d4e7276cb2b4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-24T13:40:55.479Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T07:00:59.479Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-959694854798701653790815", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-959694854798701653790815", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8" ] + }, + "id" : "urn:uuid:928154a3-f772-4c34-aaf7-7822820a2586" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-12T10:25:26.488Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T12:51:19.488Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-167134087507697916686605", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-167134087507697916686605", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083" ] + }, + "id" : "urn:uuid:1a01deda-0cb6-444f-a8d4-749fbfc99137" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-25T11:40:56.496Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T21:08:29.496Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-929609070668907328483909", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-929609070668907328483909", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2" ] + }, + "id" : "urn:uuid:fbca5d82-eb11-4ae8-b1b3-b29644e72733" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-22T14:27:13.505Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T08:02:13.505Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-144502850794529583708341", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-144502850794529583708341", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94" ] + }, + "id" : "urn:uuid:8eac208f-be84-4328-a6db-046780692733" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-22T02:43:56.514Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T16:33:46.514Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-768891775967670761825385", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-768891775967670761825385", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe" ] + }, + "id" : "urn:uuid:fdb01673-cade-48de-a9b0-72ccbc09aeca" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-27T07:27:58.523Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T11:55:59.523Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-479036158096303532465195", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-479036158096303532465195", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71" ] + }, + "id" : "urn:uuid:4904af11-fbf5-4651-a17f-72c4543b63f8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-16T14:07:00.533Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T09:24:47.533Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-974464733265450868234893", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-974464733265450868234893", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d" ] + }, + "id" : "urn:uuid:14450e12-6318-4bf9-b873-e363a1263a45" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-16T13:13:09.543Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T02:08:48.543Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-434110967031245733820597", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-434110967031245733820597", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, + "id" : "urn:uuid:1848cc95-79d6-425a-a569-76c2131f3bf3" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 17, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 79, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 32, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-956713476221991023893059", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-956713476221991023893059", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8" ] + }, + "id" : "urn:uuid:6a97e7b8-5ab3-4cd2-bcbb-62d3102720b0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-30T23:40:38.565Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T03:16:37.565Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-360215349882091888458485", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-360215349882091888458485", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8" ] + }, + "id" : "urn:uuid:9633c68b-9674-47e7-9774-e6725e73b459" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-12-10T02:47:40.575Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T00:56:48.575Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-933081716717617804149432", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-933081716717617804149432", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635" ] + }, + "id" : "urn:uuid:204b72cb-6dce-4ea1-b904-565791296b94" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-05-22T06:31:23.584Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T04:58:19.584Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-656815501582501547307739", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-656815501582501547307739", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395" ] + }, + "id" : "urn:uuid:5a79863f-40e0-4338-8328-10bf29c8b9e2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-27T21:41:24.593Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T03:04:09.593Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-859399496086120321466811", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-859399496086120321466811", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7" ] + }, + "id" : "urn:uuid:874f420d-4aa3-4bfe-a27b-c0d4b90ec6fe" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-04T10:14:30.603Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T00:30:19.603Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-765689289381275640826841", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-765689289381275640826841", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a" ] + }, + "id" : "urn:uuid:4509a262-bc69-49b5-aca5-98ff7819dfa6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-07T00:44:00.612Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T01:35:20.612Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-622040644727465160689648", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-622040644727465160689648", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799" ] + }, + "id" : "urn:uuid:a13bfcc3-4a4a-438a-91c3-2949c1c7784a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-14T03:34:14.621Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T23:55:58.621Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-840817587748120501500229", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-840817587748120501500229", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f" ] + }, + "id" : "urn:uuid:9ea0b9ba-70f8-420d-86b0-d5d236166f6e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-16T08:38:38.631Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T13:50:50.631Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-941276024822824411841715", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-941276024822824411841715", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715" ] + }, + "id" : "urn:uuid:ca768263-11ee-4b2f-ac89-1e81e8f0cd37" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-29T23:50:59.641Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T14:39:05.641Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-356858480226002200189126", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-356858480226002200189126", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096" ] + }, + "id" : "urn:uuid:6b4f4e66-6461-4421-8e86-4e00f87a171a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-23T07:00:59.659Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T09:47:24.659Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-070847793976491100939693", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-070847793976491100939693", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, + "id" : "urn:uuid:6bc49c2a-0e63-4e13-8445-10111e0081ff" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 1, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 16, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 17, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-030748588493403866742894", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-030748588493403866742894", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678" ] + }, + "id" : "urn:uuid:3c013a63-f549-4d84-886a-4a74ac8e688b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-27T10:03:54.679Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T23:39:05.679Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-771336053217586455142752", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-771336053217586455142752", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847" ] + }, + "id" : "urn:uuid:121ac0d5-00dc-4347-a7d3-60748abd3e3c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-02-19T20:42:45.699Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T18:50:06.699Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-008687381501437878041755", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-008687381501437878041755", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034" ] + }, + "id" : "urn:uuid:f48c8bb2-78c5-4aa4-bd31-99102fbbc9e4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-20T13:47:56.711Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T12:19:18.711Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-201550998139721245596637", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-201550998139721245596637", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca" ] + }, + "id" : "urn:uuid:3435a664-fe4d-401c-92dc-fac0ee4597d9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-04T19:34:46.725Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T06:12:11.725Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-889346853351114812717530", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-889346853351114812717530", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181" ] + }, + "id" : "urn:uuid:e48c48f7-8a6e-4aaf-9cdf-8d87232b08e1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-27T04:30:04.738Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T14:22:44.738Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-386264589405262434865687", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-386264589405262434865687", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c" ] + }, + "id" : "urn:uuid:259d6f6f-8842-4d67-a55c-396732113704" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-20T11:39:04.750Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T07:08:09.750Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-438121073262175609809152", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-438121073262175609809152", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c" ] + }, + "id" : "urn:uuid:2b69433b-00ae-4dd9-8bd6-9b9328baf042" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-14T15:47:30.759Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T06:13:12.759Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-519180246112852203740329", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-519180246112852203740329", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7" ] + }, + "id" : "urn:uuid:23909b89-bed4-4278-98ba-b598417984a5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-15T23:51:15.768Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T20:33:06.768Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-884344721058934177027609", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-884344721058934177027609", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067" ] + }, + "id" : "urn:uuid:ef077e5b-c644-4947-b0d1-df2591562a78" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-12T15:37:03.775Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T03:46:15.775Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-492509807455885646924576", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-492509807455885646924576", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc" ] + }, + "id" : "urn:uuid:3c0a05e0-6efe-4610-8a01-ed7756a425e6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-03T13:38:23.784Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T05:06:08.784Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-659326907960055169659053", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-659326907960055169659053", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, + "id" : "urn:uuid:e68eea28-c4d9-42e5-a65d-f609f6ee57e9" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 17, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 87, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 79, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-254111969366847034436179", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-254111969366847034436179", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988" ] + }, + "id" : "urn:uuid:7d91fc1d-0c8b-46ea-b84f-f6a4889b8864" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-12T19:09:39.806Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T20:03:32.806Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-036134668233880433838922", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-036134668233880433838922", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6" ] + }, + "id" : "urn:uuid:0ba0e485-ab62-458e-bb2b-20af7bae5c90" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-20T16:53:11.817Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T14:11:24.817Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-694763806473950357919995", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-694763806473950357919995", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb" ] + }, + "id" : "urn:uuid:1d50936e-03fc-4ea2-a586-1e366285e696" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-09-13T03:04:12.835Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T12:52:48.835Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-967480616439025774042627", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-967480616439025774042627", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba" ] + }, + "id" : "urn:uuid:4225da2e-07cd-4b73-95af-fe16d6cc47fe" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-21T03:13:14.847Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T01:18:05.847Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-406353596332130599589879", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-406353596332130599589879", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d" ] + }, + "id" : "urn:uuid:0f2dc2ae-13ba-4005-b552-f9406ab11c2d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-18T04:30:28.857Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T12:03:16.857Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-060704617150118380701621", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-060704617150118380701621", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4" ] + }, + "id" : "urn:uuid:07567336-197b-4230-98c2-8961a7f9cc46" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-28T07:01:22.867Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T08:22:44.867Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-965814765099154418930842", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-965814765099154418930842", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491" ] + }, + "id" : "urn:uuid:24306864-9531-4d69-9452-b56ec164cd54" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-03T21:30:59.876Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T21:17:49.876Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-187039496213224561772302", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-187039496213224561772302", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909" ] + }, + "id" : "urn:uuid:c1d9ac89-3ddb-487e-910d-d1e34d5bedec" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-28T20:31:18.885Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T23:21:44.885Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-586335172602058286879276", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-586335172602058286879276", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302" ] + }, + "id" : "urn:uuid:eeabc049-7420-4850-8ac1-1211d2c6a3d1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-21T02:54:12.894Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T18:58:52.894Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-209447235629325023160126", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-209447235629325023160126", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628" ] + }, + "id" : "urn:uuid:36812c15-b100-4f8d-a353-ffe1fcd807f1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-16T15:33:55.902Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T16:34:31.902Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:24faab64-718d-479b-913d-9808f3972c07", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7255efed-2373-4993-80a5-746f83246e18", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-260237660522412381841434", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-260237660522412381841434", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, + "id" : "urn:uuid:2ad5ad42-0c2f-402d-972d-1949cb5aa7ff" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 84, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 65, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 57, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-152820136114561222839520", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-152820136114561222839520", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc" ] + }, + "id" : "urn:uuid:f19f6213-a6c1-48d1-8490-8ccd8147984f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-06-29T19:18:17.921Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T12:11:34.921Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:24faab64-718d-479b-913d-9808f3972c07", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:24faab64-718d-479b-913d-9808f3972c07", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:24faab64-718d-479b-913d-9808f3972c07" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-650903520885818179265536", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24faab64-718d-479b-913d-9808f3972c07", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-650903520885818179265536", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:24faab64-718d-479b-913d-9808f3972c07" ] + }, + "id" : "urn:uuid:57875343-7418-4885-892f-125fb0a949ec" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-04T15:57:59.931Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T20:44:59.931Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-243079280600019906736428", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-243079280600019906736428", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10" ] + }, + "id" : "urn:uuid:43b3b5b5-9503-427e-840e-079913296a70" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-07-11T13:10:51.940Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T08:29:06.940Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-301794434476524336434410", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-301794434476524336434410", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3" ] + }, + "id" : "urn:uuid:ddc7a81d-bc57-4c32-9296-6890f4a5fd89" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-04-08T22:52:30.949Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T22:16:07.949Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-438646183330596345498574", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-438646183330596345498574", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b" ] + }, + "id" : "urn:uuid:28fc693c-0cee-479d-a6ae-37d65e145bbb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-02-21T19:00:25.958Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T22:28:14.958Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7255efed-2373-4993-80a5-746f83246e18", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7255efed-2373-4993-80a5-746f83246e18", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7255efed-2373-4993-80a5-746f83246e18" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-430113413708009520452441", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7255efed-2373-4993-80a5-746f83246e18", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-430113413708009520452441", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7255efed-2373-4993-80a5-746f83246e18" ] + }, + "id" : "urn:uuid:ba30baca-b2ae-4442-be22-d15cec24ada8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-09-13T10:44:17.967Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T01:43:03.967Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-557126963493192613897456", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-557126963493192613897456", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6" ] + }, + "id" : "urn:uuid:bacb7661-f8d0-4a15-8935-bdb592ceb2ea" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-20T13:20:37.976Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T23:32:17.976Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-297327514285913133682442", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-297327514285913133682442", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c" ] + }, + "id" : "urn:uuid:53b9c1bf-c40d-4b9c-a81d-56ee76402c01" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-12-07T20:40:34.985Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T14:07:37.985Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-733886275341016302080224", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-733886275341016302080224", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f" ] + }, + "id" : "urn:uuid:c506a1c3-c43e-4c2b-a9cc-01bc2da29ef6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-18T19:56:38.993Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T14:42:36.993Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-511643301408100673759593", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-511643301408100673759593", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24" ] + }, + "id" : "urn:uuid:f13679d2-cd70-4ab7-98f0-6c625db18af1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-04-10T14:55:14.002Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T02:14:30.002Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-756965797011066067986720", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-756965797011066067986720", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, + "id" : "urn:uuid:c11b21ea-7bd5-4163-9b3e-066887b0620a" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 40, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 36, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 81, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-699702706505562008351228", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-699702706505562008351228", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45" ] + }, + "id" : "urn:uuid:83e8c6c9-9afd-4dac-a505-cb5d8a4989ee" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-24T07:47:09.021Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T00:36:02.021Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-575067241110950790616806", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-575067241110950790616806", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df" ] + }, + "id" : "urn:uuid:667cab45-740c-4b40-b278-a8df5b2e0c8c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-12-11T20:28:58.031Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T16:14:16.031Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-255099795392367984867032", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-255099795392367984867032", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb" ] + }, + "id" : "urn:uuid:bc387d80-3e64-4b8b-940d-7090ca0f6906" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-19T06:57:51.040Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T04:38:52.040Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-336229628044151104131585", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-336229628044151104131585", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f" ] + }, + "id" : "urn:uuid:7f85bc29-5db5-4f62-8f90-7d2669488a68" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-26T06:31:31.049Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T18:53:13.049Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-820788634629432174146237", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-820788634629432174146237", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175" ] + }, + "id" : "urn:uuid:0767a71f-12b9-4c60-af66-9aa08a0cc3fe" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-01T20:52:47.058Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T00:06:18.058Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-272897261394427721305544", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-272897261394427721305544", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614" ] + }, + "id" : "urn:uuid:19137873-7697-4da2-bb33-2ed3108f3658" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-20T03:16:43.067Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T01:20:27.067Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-632964174818125854758153", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-632964174818125854758153", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c" ] + }, + "id" : "urn:uuid:a75ffbff-bf73-4e39-8e4f-765f3540088d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-05T02:50:10.075Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T13:16:34.075Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-622190643458435915242908", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-622190643458435915242908", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e" ] + }, + "id" : "urn:uuid:63cb41bf-bfce-427f-ac99-a58b6f1d80bd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-17T10:59:44.087Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T02:14:14.087Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-609571686483062073850021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-609571686483062073850021", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf" ] + }, + "id" : "urn:uuid:9c82f22b-de30-4227-b566-2c64a9beeb46" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-27T01:29:48.100Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T04:54:33.100Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-514541801590792151245020", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-514541801590792151245020", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29" ] + }, + "id" : "urn:uuid:7c03aaa8-92c3-4b99-be1b-e2717a171364" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-13T17:18:05.113Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T00:13:03.113Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "electric", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "childItems" : [ { + "catenaXId" : "urn:uuid:264e340c-c176-440f-8e28-e6741cc6f0e3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7d648933-a961-4608-9ff6-76bc530d7e39", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ead7804f-3730-4d37-858c-921a55ef35be", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:93b3cb65-db89-4b73-bc70-db79307e8d0e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:53c1e7ca-bdbb-4e01-a11a-ba0dd42763d0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:befe57b7-c357-41b4-beb0-add888e6f8c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ac42c987-8696-4e66-a718-089117b7a3dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:86d4696c-65a1-45ca-8f98-83b453b9607a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7eb1f42-c7f0-46a8-84d1-15433f3047dc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4b31fe2f-6d7c-4d13-834d-d4e45af8b2b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:de21aff3-c63c-4b29-a54f-047601ecfa8e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2c13778e-2c16-4863-b696-8716bbd4606c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c9fe130c-72f0-440e-a719-c5f6ad9dcdf1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c6e2ac85-4482-40fb-b96b-b19ee8ce6fb0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e63dfb42-e66f-4495-a0f2-2401935b7b32", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cf3004bc-543d-410b-9056-63773a6e66da", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:104e798d-0283-4243-9aec-b90715e8a31c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ae0c5b2b-ccf0-44da-a5a9-b6fb6ebb68fb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:20674b35-f4c1-44c9-934b-8c1fc783a5e1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b7e9156d-8d55-43bc-8e4b-5fbd1e5587d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:43d347b0-0aa8-480f-a360-faa76f99fc44", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bca320b0-0596-4947-ac82-cdbb075ecff0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2a42c229-9eea-4db1-bef5-6c914fd4a4e2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:abc6d243-c9d0-48a1-8dff-b01b85ded57c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa70e55b-eef2-4aa5-b9d8-859715349645", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:968aa73a-7656-422b-baa5-372cdeb3553d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:51709f1d-f168-4021-aeb7-e9552a971102", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "YZ-39", + "key" : "manufacturerPartId" + }, { + "value" : "OMCCENKGHWVKCBZLI", + "key" : "partInstanceId" + }, { + "value" : "OMCCENKGHWVKCBZLI", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2017-07-08T20:08:20.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "partTypeInformation" : { + "manufacturerPartId" : "YZ-39", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCCENKGHWVKCBZLI", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "YZ-39", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_fully_electric.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Fully Electric" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, + "id" : "urn:uuid:22fcbfb0-ac46-4d58-9c95-90bfa8d5c719" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 88, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 81, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 12, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 35, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 6, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 19, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 46, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 63, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 64, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 34, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:264e340c-c176-440f-8e28-e6741cc6f0e3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:264e340c-c176-440f-8e28-e6741cc6f0e3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-503172464801873902161642", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:264e340c-c176-440f-8e28-e6741cc6f0e3", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-503172464801873902161642", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:264e340c-c176-440f-8e28-e6741cc6f0e3" ] + }, + "id" : "urn:uuid:7dcb7192-761e-48b0-b8db-2e7bac2bb57c" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0", + "childItems" : [ { + "catenaXId" : "urn:uuid:a2c5b932-9670-4f5f-b0e5-73fc9f700819", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-054960021216308446114555", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-054960021216308446114555", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0" ] + }, + "id" : "urn:uuid:a11d11c0-5cb3-4df2-bd6e-1c5e8ca32990" + } ] + }, { + "catenaXId" : "urn:uuid:a2c5b932-9670-4f5f-b0e5-73fc9f700819", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a2c5b932-9670-4f5f-b0e5-73fc9f700819" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-531117865107067923440358", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a2c5b932-9670-4f5f-b0e5-73fc9f700819", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-531117865107067923440358", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a2c5b932-9670-4f5f-b0e5-73fc9f700819" ] + }, + "id" : "urn:uuid:d13b846a-b8d4-4ff0-b8ae-d3777e01e3ec" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8", + "childItems" : [ { + "catenaXId" : "urn:uuid:2b3b2f67-bc1e-40ae-ae4e-7c0a0e201f65", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-461163108887744735274687", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-461163108887744735274687", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8" ] + }, + "id" : "urn:uuid:98c1a27a-f744-43a6-af16-6e8c03f979e5" + } ] + }, { + "catenaXId" : "urn:uuid:2b3b2f67-bc1e-40ae-ae4e-7c0a0e201f65", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2b3b2f67-bc1e-40ae-ae4e-7c0a0e201f65" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-117926100871704427329839", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2b3b2f67-bc1e-40ae-ae4e-7c0a0e201f65", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-117926100871704427329839", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2b3b2f67-bc1e-40ae-ae4e-7c0a0e201f65" ] + }, + "id" : "urn:uuid:ca8682cf-0e49-4ef5-aa12-4876ebfa09d5" + } ] + }, { + "catenaXId" : "urn:uuid:7d648933-a961-4608-9ff6-76bc530d7e39", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7d648933-a961-4608-9ff6-76bc530d7e39" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-291676142537221970465487", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7d648933-a961-4608-9ff6-76bc530d7e39", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-291676142537221970465487", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7d648933-a961-4608-9ff6-76bc530d7e39" ] + }, + "id" : "urn:uuid:d9191623-1a64-4bf3-bfce-af2f082fb189" + } ] + }, { + "catenaXId" : "urn:uuid:ead7804f-3730-4d37-858c-921a55ef35be", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ead7804f-3730-4d37-858c-921a55ef35be" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-965783595109157940413878", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ead7804f-3730-4d37-858c-921a55ef35be", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-965783595109157940413878", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ead7804f-3730-4d37-858c-921a55ef35be" ] + }, + "id" : "urn:uuid:1fcd35c2-7109-4a08-8166-ed8bcd8f1c29" + } ] + }, { + "catenaXId" : "urn:uuid:93b3cb65-db89-4b73-bc70-db79307e8d0e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:93b3cb65-db89-4b73-bc70-db79307e8d0e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-902617643353440646613803", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:93b3cb65-db89-4b73-bc70-db79307e8d0e", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-902617643353440646613803", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:93b3cb65-db89-4b73-bc70-db79307e8d0e" ] + }, + "id" : "urn:uuid:88c07186-d944-4c99-b3a8-5484ae65d82e" + } ] + }, { + "catenaXId" : "urn:uuid:53c1e7ca-bdbb-4e01-a11a-ba0dd42763d0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:53c1e7ca-bdbb-4e01-a11a-ba0dd42763d0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-887421378161648648489926", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:53c1e7ca-bdbb-4e01-a11a-ba0dd42763d0", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-887421378161648648489926", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:53c1e7ca-bdbb-4e01-a11a-ba0dd42763d0" ] + }, + "id" : "urn:uuid:ba2cab4a-ce11-4cac-a5ea-9814debc36a7" + } ] + }, { + "catenaXId" : "urn:uuid:befe57b7-c357-41b4-beb0-add888e6f8c6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:befe57b7-c357-41b4-beb0-add888e6f8c6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-398768286151125634738595", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:befe57b7-c357-41b4-beb0-add888e6f8c6", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-398768286151125634738595", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:befe57b7-c357-41b4-beb0-add888e6f8c6" ] + }, + "id" : "urn:uuid:0f68b085-1199-4f2f-9d0c-102abec27ad4" + } ] + }, { + "catenaXId" : "urn:uuid:ac42c987-8696-4e66-a718-089117b7a3dd", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ac42c987-8696-4e66-a718-089117b7a3dd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-912553572665183851961201", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ac42c987-8696-4e66-a718-089117b7a3dd", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-912553572665183851961201", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ac42c987-8696-4e66-a718-089117b7a3dd" ] + }, + "id" : "urn:uuid:86f933d1-582f-4db3-9a28-9a3b230ece76" + } ] + }, { + "catenaXId" : "urn:uuid:86d4696c-65a1-45ca-8f98-83b453b9607a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:86d4696c-65a1-45ca-8f98-83b453b9607a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-530647870281046420150417", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:86d4696c-65a1-45ca-8f98-83b453b9607a", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-530647870281046420150417", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:86d4696c-65a1-45ca-8f98-83b453b9607a" ] + }, + "id" : "urn:uuid:81233b67-c40d-41d0-9392-a66e7f4ead90" + } ] + }, { + "catenaXId" : "urn:uuid:c7eb1f42-c7f0-46a8-84d1-15433f3047dc", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c7eb1f42-c7f0-46a8-84d1-15433f3047dc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-422958279142739791526157", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c7eb1f42-c7f0-46a8-84d1-15433f3047dc", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-422958279142739791526157", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c7eb1f42-c7f0-46a8-84d1-15433f3047dc" ] + }, + "id" : "urn:uuid:61802499-99d7-411a-bb0d-ff6dabbf8025" + } ] + }, { + "catenaXId" : "urn:uuid:4b31fe2f-6d7c-4d13-834d-d4e45af8b2b1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4b31fe2f-6d7c-4d13-834d-d4e45af8b2b1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-222149684134952409799430", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b31fe2f-6d7c-4d13-834d-d4e45af8b2b1", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-222149684134952409799430", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4b31fe2f-6d7c-4d13-834d-d4e45af8b2b1" ] + }, + "id" : "urn:uuid:8767b93e-ca0e-4f54-97b4-78ca919f2a42" + } ] + }, { + "catenaXId" : "urn:uuid:de21aff3-c63c-4b29-a54f-047601ecfa8e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:de21aff3-c63c-4b29-a54f-047601ecfa8e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-924897006862011017894138", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:de21aff3-c63c-4b29-a54f-047601ecfa8e", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-924897006862011017894138", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:de21aff3-c63c-4b29-a54f-047601ecfa8e" ] + }, + "id" : "urn:uuid:2938835d-fc32-4330-86eb-c7933f162a8c" + } ] + }, { + "catenaXId" : "urn:uuid:2c13778e-2c16-4863-b696-8716bbd4606c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2c13778e-2c16-4863-b696-8716bbd4606c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-590117526762531081634369", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2c13778e-2c16-4863-b696-8716bbd4606c", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-590117526762531081634369", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2c13778e-2c16-4863-b696-8716bbd4606c" ] + }, + "id" : "urn:uuid:e2625404-4ccf-4261-838e-72bd9b6103ea" + } ] + }, { + "catenaXId" : "urn:uuid:c9fe130c-72f0-440e-a719-c5f6ad9dcdf1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c9fe130c-72f0-440e-a719-c5f6ad9dcdf1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-180099615408651920418684", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c9fe130c-72f0-440e-a719-c5f6ad9dcdf1", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-180099615408651920418684", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c9fe130c-72f0-440e-a719-c5f6ad9dcdf1" ] + }, + "id" : "urn:uuid:c9ec2bfa-d25b-4265-b62a-55deef8089a0" + } ] + }, { + "catenaXId" : "urn:uuid:c6e2ac85-4482-40fb-b96b-b19ee8ce6fb0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c6e2ac85-4482-40fb-b96b-b19ee8ce6fb0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-030116390560216958234131", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c6e2ac85-4482-40fb-b96b-b19ee8ce6fb0", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-030116390560216958234131", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c6e2ac85-4482-40fb-b96b-b19ee8ce6fb0" ] + }, + "id" : "urn:uuid:30be7258-ed19-4fc4-b638-15a67de26374" + } ] + }, { + "catenaXId" : "urn:uuid:e63dfb42-e66f-4495-a0f2-2401935b7b32", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e63dfb42-e66f-4495-a0f2-2401935b7b32" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-004185580878017331610496", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e63dfb42-e66f-4495-a0f2-2401935b7b32", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-004185580878017331610496", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e63dfb42-e66f-4495-a0f2-2401935b7b32" ] + }, + "id" : "urn:uuid:e69e6c24-f1f3-4e63-8531-f0f1b783572f" + } ] + }, { + "catenaXId" : "urn:uuid:cf3004bc-543d-410b-9056-63773a6e66da", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cf3004bc-543d-410b-9056-63773a6e66da" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-873462010716517403463859", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cf3004bc-543d-410b-9056-63773a6e66da", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-873462010716517403463859", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cf3004bc-543d-410b-9056-63773a6e66da" ] + }, + "id" : "urn:uuid:756ee093-32a3-43f8-bded-3ac93cf618e3" + } ] + }, { + "catenaXId" : "urn:uuid:104e798d-0283-4243-9aec-b90715e8a31c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:104e798d-0283-4243-9aec-b90715e8a31c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-142888456982591222436343", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:104e798d-0283-4243-9aec-b90715e8a31c", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-142888456982591222436343", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:104e798d-0283-4243-9aec-b90715e8a31c" ] + }, + "id" : "urn:uuid:d02a650c-366d-4a60-9b13-071e3d1784f5" + } ] + }, { + "catenaXId" : "urn:uuid:ae0c5b2b-ccf0-44da-a5a9-b6fb6ebb68fb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ae0c5b2b-ccf0-44da-a5a9-b6fb6ebb68fb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-726910737178785617325520", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ae0c5b2b-ccf0-44da-a5a9-b6fb6ebb68fb", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-726910737178785617325520", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ae0c5b2b-ccf0-44da-a5a9-b6fb6ebb68fb" ] + }, + "id" : "urn:uuid:7b22a0ea-c2c9-43e7-9981-c27c11af9996" + } ] + }, { + "catenaXId" : "urn:uuid:20674b35-f4c1-44c9-934b-8c1fc783a5e1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:20674b35-f4c1-44c9-934b-8c1fc783a5e1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-152598880223344832999827", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:20674b35-f4c1-44c9-934b-8c1fc783a5e1", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-152598880223344832999827", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:20674b35-f4c1-44c9-934b-8c1fc783a5e1" ] + }, + "id" : "urn:uuid:0097e418-dd83-4189-a80e-99e269be76e2" + } ] + }, { + "catenaXId" : "urn:uuid:b7e9156d-8d55-43bc-8e4b-5fbd1e5587d7", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b7e9156d-8d55-43bc-8e4b-5fbd1e5587d7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-395077019381052033721547", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b7e9156d-8d55-43bc-8e4b-5fbd1e5587d7", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-395077019381052033721547", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b7e9156d-8d55-43bc-8e4b-5fbd1e5587d7" ] + }, + "id" : "urn:uuid:1cef0bcf-15b3-4ed8-a18e-4ef7a8c85f49" + } ] + }, { + "catenaXId" : "urn:uuid:43d347b0-0aa8-480f-a360-faa76f99fc44", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:43d347b0-0aa8-480f-a360-faa76f99fc44" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-637806732010223342074532", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:43d347b0-0aa8-480f-a360-faa76f99fc44", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-637806732010223342074532", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:43d347b0-0aa8-480f-a360-faa76f99fc44" ] + }, + "id" : "urn:uuid:fb2299f0-18fc-4e30-beac-8a7cc9d30440" + } ] + }, { + "catenaXId" : "urn:uuid:bca320b0-0596-4947-ac82-cdbb075ecff0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bca320b0-0596-4947-ac82-cdbb075ecff0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-459946581888495762214541", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bca320b0-0596-4947-ac82-cdbb075ecff0", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-459946581888495762214541", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bca320b0-0596-4947-ac82-cdbb075ecff0" ] + }, + "id" : "urn:uuid:ae81335c-f5e8-43d3-aa20-b5a7805fffe6" + } ] + }, { + "catenaXId" : "urn:uuid:2a42c229-9eea-4db1-bef5-6c914fd4a4e2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2a42c229-9eea-4db1-bef5-6c914fd4a4e2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-065948759252168924418143", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2a42c229-9eea-4db1-bef5-6c914fd4a4e2", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-065948759252168924418143", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2a42c229-9eea-4db1-bef5-6c914fd4a4e2" ] + }, + "id" : "urn:uuid:6dc11466-5d1d-4847-a85a-6bc1cfbbbc6f" + } ] + }, { + "catenaXId" : "urn:uuid:abc6d243-c9d0-48a1-8dff-b01b85ded57c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:abc6d243-c9d0-48a1-8dff-b01b85ded57c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-725868528542091912401951", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:abc6d243-c9d0-48a1-8dff-b01b85ded57c", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-725868528542091912401951", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:abc6d243-c9d0-48a1-8dff-b01b85ded57c" ] + }, + "id" : "urn:uuid:b5c4d4e2-2faa-4ac2-81fd-53a299690310" + } ] + }, { + "catenaXId" : "urn:uuid:aa70e55b-eef2-4aa5-b9d8-859715349645", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aa70e55b-eef2-4aa5-b9d8-859715349645" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-312304292869165614273650", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aa70e55b-eef2-4aa5-b9d8-859715349645", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-312304292869165614273650", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:aa70e55b-eef2-4aa5-b9d8-859715349645" ] + }, + "id" : "urn:uuid:412d88e2-c4a8-4e3d-9704-a6616be17071" + } ] + }, { + "catenaXId" : "urn:uuid:968aa73a-7656-422b-baa5-372cdeb3553d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:968aa73a-7656-422b-baa5-372cdeb3553d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-609845748481079197831718", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:968aa73a-7656-422b-baa5-372cdeb3553d", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-609845748481079197831718", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:968aa73a-7656-422b-baa5-372cdeb3553d" ] + }, + "id" : "urn:uuid:b17f2beb-33b2-456b-a5b3-de1cd25266e8" + } ] + }, { + "catenaXId" : "urn:uuid:51709f1d-f168-4021-aeb7-e9552a971102", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:51709f1d-f168-4021-aeb7-e9552a971102" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-802346908012909357549592", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:51709f1d-f168-4021-aeb7-e9552a971102", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-802346908012909357549592", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:51709f1d-f168-4021-aeb7-e9552a971102" ] + }, + "id" : "urn:uuid:1ff249eb-018e-44ea-bb86-cde24d0da06b" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a6b6559-e6ec-4413-a3cc-381d66d5fbcc", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a712c3e0-58b1-4d2d-81f0-0400e8b8cabd", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-519442972677077275122445", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-519442972677077275122445", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-519442972677077275122445", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63" ] + }, + "id" : "urn:uuid:c43a73cb-d191-4e60-bdda-bd4c8a988ac6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 36, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 17, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 3, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9a6b6559-e6ec-4413-a3cc-381d66d5fbcc", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9a6b6559-e6ec-4413-a3cc-381d66d5fbcc" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "23798T5-40", + "key" : "manufacturerPartId" + }, { + "value" : "NO-047212620055903193846264", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9a6b6559-e6ec-4413-a3cc-381d66d5fbcc", + "partTypeInformation" : { + "manufacturerPartId" : "23798T5-40", + "customerPartId" : "23798T5-40", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 64, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 62, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d", + "childItems" : [ { + "catenaXId" : "urn:uuid:e71ae952-c811-48ff-994d-1ba6bff89d5f", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "49567M6-33", + "key" : "manufacturerPartId" + }, { + "value" : "NO-922681181073257283609321", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d", + "partTypeInformation" : { + "manufacturerPartId" : "49567M6-33", + "customerPartId" : "49567M6-33", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-922681181073257283609321", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "49567M6-33", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d" ] + }, + "id" : "urn:uuid:1e6cef7a-8f7a-4548-b2be-bc8124cde2d0" + } ] + }, { + "catenaXId" : "urn:uuid:e71ae952-c811-48ff-994d-1ba6bff89d5f", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e71ae952-c811-48ff-994d-1ba6bff89d5f" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "90880V4-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-822431673287314753596706", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e71ae952-c811-48ff-994d-1ba6bff89d5f", + "partTypeInformation" : { + "manufacturerPartId" : "90880V4-08", + "customerPartId" : "90880V4-08", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 41, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 73, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a712c3e0-58b1-4d2d-81f0-0400e8b8cabd", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:a712c3e0-58b1-4d2d-81f0-0400e8b8cabd", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a712c3e0-58b1-4d2d-81f0-0400e8b8cabd" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "18250V1-17", + "key" : "manufacturerPartId" + }, { + "value" : "NO-861673728595008076055617", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a712c3e0-58b1-4d2d-81f0-0400e8b8cabd", + "partTypeInformation" : { + "manufacturerPartId" : "18250V1-17", + "customerPartId" : "18250V1-17", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334", + "childItems" : [ { + "catenaXId" : "urn:uuid:19357b27-0254-4a1c-b4e8-17eb3b2776bc", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ac65bc6f-6882-4136-a31e-c2a1ff24859f", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "02511Y9-05", + "key" : "manufacturerPartId" + }, { + "value" : "NO-970092029477941271102426", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334", + "partTypeInformation" : { + "manufacturerPartId" : "02511Y9-05", + "customerPartId" : "02511Y9-05", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-970092029477941271102426", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "02511Y9-05", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334" ] + }, + "id" : "urn:uuid:0f5ea252-02bb-4cde-9f5d-cd806cd65c88" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 54, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:19357b27-0254-4a1c-b4e8-17eb3b2776bc", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:19357b27-0254-4a1c-b4e8-17eb3b2776bc" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "80667Z8-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-552733194063756681964467", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:19357b27-0254-4a1c-b4e8-17eb3b2776bc", + "partTypeInformation" : { + "manufacturerPartId" : "80667Z8-49", + "customerPartId" : "80667Z8-49", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 20, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 74, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2", + "childItems" : [ { + "catenaXId" : "urn:uuid:0d949893-55cc-4100-a1ce-55f298037fff", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "37097F0-30", + "key" : "manufacturerPartId" + }, { + "value" : "NO-309304875111889774185708", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2", + "partTypeInformation" : { + "manufacturerPartId" : "37097F0-30", + "customerPartId" : "37097F0-30", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-309304875111889774185708", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "37097F0-30", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2" ] + }, + "id" : "urn:uuid:2f58b7af-bcc5-4eb0-a403-b94455a5c1f6" + } ] + }, { + "catenaXId" : "urn:uuid:0d949893-55cc-4100-a1ce-55f298037fff", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0d949893-55cc-4100-a1ce-55f298037fff" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "01887I7-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-379087622945308304187489", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0d949893-55cc-4100-a1ce-55f298037fff", + "partTypeInformation" : { + "manufacturerPartId" : "01887I7-60", + "customerPartId" : "01887I7-60", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 22, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 32, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:ac65bc6f-6882-4136-a31e-c2a1ff24859f", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ac65bc6f-6882-4136-a31e-c2a1ff24859f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "05330Z5-40", + "key" : "manufacturerPartId" + }, { + "value" : "NO-915157399556695792763417", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ac65bc6f-6882-4136-a31e-c2a1ff24859f", + "partTypeInformation" : { + "manufacturerPartId" : "05330Z5-40", + "customerPartId" : "05330Z5-40", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-915157399556695792763417", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "05330Z5-40", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ac65bc6f-6882-4136-a31e-c2a1ff24859f" ] + }, + "id" : "urn:uuid:74501703-5c09-4c8e-b876-da36b98a0632" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 10, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 26, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "childItems" : [ { + "catenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-330901973905981800052469", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-330901973905981800052469", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c" ] + }, + "id" : "urn:uuid:08eb9b8c-229a-4f10-ae0f-fdafaa1252e6" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 15, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 3, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 6, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-271917604382089255576663", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-271917604382089255576663", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, + "id" : "urn:uuid:65dbb03d-b43d-477e-ba71-9acd34d9fbb0" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 26, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 56, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-526514996509776205189567", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-526514996509776205189567", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf" ] + }, + "id" : "urn:uuid:4072a794-98e0-4d35-be39-c4f33111ba03" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-01T05:45:00.282Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T09:03:42.282Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-489937491257694194054935", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-489937491257694194054935", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1" ] + }, + "id" : "urn:uuid:f1772d47-dc38-402d-bb6a-fbc54afea404" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-22T12:13:18.291Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T22:06:27.291Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-097641126978209180903491", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-097641126978209180903491", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d" ] + }, + "id" : "urn:uuid:01a0ae6c-8286-430e-a736-df074ed20136" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-21T02:41:27.301Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T12:39:32.301Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-542569895035911328675392", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-542569895035911328675392", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2" ] + }, + "id" : "urn:uuid:9fe12df6-5b3d-45fc-a666-8a15402e4141" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-12T12:30:27.312Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T20:19:57.312Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-065050751294593571595344", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-065050751294593571595344", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa" ] + }, + "id" : "urn:uuid:1f48047b-a47d-451b-98f8-5864191bb907" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-11T16:29:35.327Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T19:39:37.327Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-580846836150886889934067", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-580846836150886889934067", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202" ] + }, + "id" : "urn:uuid:06155bf7-f9d3-4677-993c-be9c11aa5a00" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-02T23:05:45.340Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T10:35:35.340Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-521471931970244427911069", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-521471931970244427911069", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a" ] + }, + "id" : "urn:uuid:9083e3b0-3c6d-4107-aa23-b57ff59cd6b3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-20T16:33:31.351Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T19:42:23.351Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-432866875486815029391145", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-432866875486815029391145", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e" ] + }, + "id" : "urn:uuid:e56f1e0c-0e44-4765-995f-7b57041b2b79" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-04T21:33:18.361Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T12:23:45.361Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-466073178583010373426798", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-466073178583010373426798", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377" ] + }, + "id" : "urn:uuid:c2332b42-595c-4692-b26d-357aabd40db4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-12-12T13:26:30.371Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T07:14:37.371Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-510380041487338970316236", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-510380041487338970316236", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330" ] + }, + "id" : "urn:uuid:dbcdbe4a-1120-4526-9594-5695f69528f6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-07T13:57:58.381Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T20:40:31.381Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-477546327417189469597936", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-477546327417189469597936", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, + "id" : "urn:uuid:a24aec18-d060-4bd1-85bb-4a1ecdfed75c" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 46, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 11, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 85, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-145201871947759236178926", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-145201871947759236178926", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c" ] + }, + "id" : "urn:uuid:6e0a4c49-a5c0-446b-8946-b7b2271aa07b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-11T11:17:57.401Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T22:27:53.401Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-718934175863277518916726", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-718934175863277518916726", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577" ] + }, + "id" : "urn:uuid:dca5aadb-15e8-422a-bc7a-d341435c9558" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-08T06:28:15.410Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T17:01:17.410Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-301659875029994535880210", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-301659875029994535880210", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f" ] + }, + "id" : "urn:uuid:0baa3f57-9db6-4e3a-8ded-e25e3b284d1a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-13T22:08:08.422Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T11:17:43.422Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-457502382489492209524579", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-457502382489492209524579", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666" ] + }, + "id" : "urn:uuid:f932628c-338d-4f31-8d25-c1e4310db560" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-31T20:11:58.438Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T21:26:00.438Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-543106837835681199104634", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-543106837835681199104634", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6" ] + }, + "id" : "urn:uuid:156ce0f3-6d52-47f0-ba80-2d9330f8d7df" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-09T07:35:06.449Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T18:16:52.449Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-223262480051888396717562", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-223262480051888396717562", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219" ] + }, + "id" : "urn:uuid:cfddec59-b54d-49c3-9c99-7b9d8551c286" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-10-09T21:46:58.458Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T17:19:41.458Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-186892466007256398218519", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-186892466007256398218519", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392" ] + }, + "id" : "urn:uuid:9d61d64c-c148-46ef-a1dd-00c3a9a2b295" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-18T04:58:40.471Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T08:59:37.471Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-587687767689519758521363", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-587687767689519758521363", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91" ] + }, + "id" : "urn:uuid:f57f2601-b367-4db9-ac75-3e3d66ec1357" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-25T08:55:17.483Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T14:05:10.483Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-587765789634347654278318", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-587765789634347654278318", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4" ] + }, + "id" : "urn:uuid:86539016-34b0-4daa-a74f-e82a20e6973d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-05T20:26:03.496Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T05:44:04.496Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-524971005411883876089765", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-524971005411883876089765", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65" ] + }, + "id" : "urn:uuid:24223473-c257-4bb0-810c-d105a1878b76" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-11-14T00:20:26.512Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T06:12:14.512Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-171780060562414373187989", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-171780060562414373187989", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, + "id" : "urn:uuid:82bd559d-261c-44ee-9907-ed98d01c05ac" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 3, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 25, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 29, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-526488872236877954752601", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-526488872236877954752601", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7" ] + }, + "id" : "urn:uuid:0db45f22-b93f-4edb-9824-9dd8e6b74375" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-10-25T00:37:10.539Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T07:51:46.539Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-581458535425530295036179", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-581458535425530295036179", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0" ] + }, + "id" : "urn:uuid:e76eb82e-48a4-4bfa-854f-df654cbd87b6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-11-11T03:00:09.551Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T01:59:15.552Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-658005253412070559386284", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-658005253412070559386284", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025" ] + }, + "id" : "urn:uuid:2d56e0d7-a5ac-4567-a220-efb4528bad4b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-07-29T21:08:22.563Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T16:00:22.563Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-842331953977831402623728", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-842331953977831402623728", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2" ] + }, + "id" : "urn:uuid:be8d693b-7c73-493e-a8bb-8577ac095e34" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-12T15:30:52.574Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T14:35:32.574Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-443584496067922038267521", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-443584496067922038267521", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4" ] + }, + "id" : "urn:uuid:e05c9831-5786-4526-9f55-93aaafab6265" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-20T13:13:17.588Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T19:11:09.588Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-125998467358464913074710", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-125998467358464913074710", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad" ] + }, + "id" : "urn:uuid:55f51c74-8b54-4b01-90e2-df66253db726" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-24T13:28:42.600Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T21:05:18.600Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-408059772667186912398672", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-408059772667186912398672", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44" ] + }, + "id" : "urn:uuid:261c21ea-ba35-45e7-b910-32f907949267" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-12-16T12:18:34.612Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T06:16:30.612Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-247406471396459548540061", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-247406471396459548540061", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f" ] + }, + "id" : "urn:uuid:03f22ada-3e25-487c-b578-996a9b104aef" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-04T21:27:13.635Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T21:18:01.635Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-443124594696370813633564", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-443124594696370813633564", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80" ] + }, + "id" : "urn:uuid:0098ec96-0e07-4031-b815-b2879855d794" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-12T10:25:03.645Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T14:28:41.645Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-148800266711673699036333", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-148800266711673699036333", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a" ] + }, + "id" : "urn:uuid:23b76cf5-3c7e-4972-a51c-d6bdd023abe0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-12T20:52:05.656Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T23:34:11.656Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-665377428681846101518826", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-665377428681846101518826", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, + "id" : "urn:uuid:44819602-87ed-4b18-b447-df9ade94bc3d" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 19, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 45, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 18, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-197872829082858145824561", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-197872829082858145824561", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf" ] + }, + "id" : "urn:uuid:31800471-4f93-4761-9327-cc9cd9a9f9de" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-08T08:59:42.676Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T04:57:02.676Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-234891601646138510746245", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-234891601646138510746245", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013" ] + }, + "id" : "urn:uuid:737a61c9-2f7b-47e9-a12b-0ce35b6196c5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-10T20:44:12.703Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T17:12:35.703Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-570062704101135257566811", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-570062704101135257566811", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650" ] + }, + "id" : "urn:uuid:256a92e8-fefd-47c0-8fd1-653e009abd07" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-10-28T19:55:28.715Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T00:43:45.715Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-841961386871947141088368", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-841961386871947141088368", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb" ] + }, + "id" : "urn:uuid:3b00b819-fb6a-4e9f-851b-6d6ae43ae0be" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-27T10:35:20.726Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T18:18:19.726Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-408216509020155341030208", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-408216509020155341030208", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665" ] + }, + "id" : "urn:uuid:cd54d43c-c33a-47ee-bd93-2edabf2404ca" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-28T08:34:06.736Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T06:09:08.736Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-475529129794125734426947", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-475529129794125734426947", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc" ] + }, + "id" : "urn:uuid:ad14af4a-60cf-4978-9433-583eb33b1e9d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-16T14:34:03.745Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T09:58:00.745Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-087031459087648668719579", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-087031459087648668719579", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb" ] + }, + "id" : "urn:uuid:3c35a47e-5b7f-4c9f-991a-65a6b86f4129" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-27T13:55:03.754Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T06:44:50.754Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-489269888099815507680785", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-489269888099815507680785", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a" ] + }, + "id" : "urn:uuid:124b3d5f-befe-443a-be27-0c2742c8f161" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-27T01:21:12.763Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T09:38:48.763Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-302689293858182967942095", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-302689293858182967942095", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646" ] + }, + "id" : "urn:uuid:40f763c4-f152-4e4c-8beb-17b5a86b2cdc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-13T11:08:58.772Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T02:00:27.772Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-882229046987391715353773", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-882229046987391715353773", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d" ] + }, + "id" : "urn:uuid:1fa89009-7c61-461b-ad7e-2689614fef6d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-05-21T18:29:52.781Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T05:48:59.781Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-255442569162385749623485", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-255442569162385749623485", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, + "id" : "urn:uuid:7073b1a7-a7db-402e-9044-cd317302cdbe" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 16, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 23, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 26, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-094479794310539247091592", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-094479794310539247091592", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd" ] + }, + "id" : "urn:uuid:424e0509-c316-4ad1-b0dc-4ac0ec15200b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-16T00:01:40.799Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T02:44:20.799Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-225423154703083209984811", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-225423154703083209984811", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262" ] + }, + "id" : "urn:uuid:2de32ccd-156d-4b14-95de-016149873bbc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-13T02:21:05.808Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T02:28:31.808Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-932862934008453164270219", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-932862934008453164270219", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a" ] + }, + "id" : "urn:uuid:95d9e42c-660e-43dc-811c-f98a7172a0ea" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-30T18:41:07.817Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T20:27:21.817Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-154190651509046515826862", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-154190651509046515826862", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102" ] + }, + "id" : "urn:uuid:4d51396c-f8e6-4826-a698-67b5f1c73938" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-11T06:56:26.825Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T08:10:18.825Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-948832018125119663907813", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-948832018125119663907813", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09" ] + }, + "id" : "urn:uuid:7a9b8d66-92fc-44f7-8ced-e8363de3a811" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-08-16T20:51:42.834Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T08:31:40.834Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-139533782696636985466669", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-139533782696636985466669", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d" ] + }, + "id" : "urn:uuid:282d6b7f-7c9e-49ac-9d18-32ddbd387e9e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-08-03T23:06:17.843Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T03:47:48.843Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-987449649357464722527127", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-987449649357464722527127", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4" ] + }, + "id" : "urn:uuid:305992d5-aa51-493b-943f-c5560adea0f6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-14T19:32:52.852Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T03:09:55.852Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-135667437882530366929093", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-135667437882530366929093", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9" ] + }, + "id" : "urn:uuid:d7e58937-e2cc-4d83-a9a4-9a22fd62aeca" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-17T20:07:20.861Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T05:45:04.861Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-290458972348102483114427", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-290458972348102483114427", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef" ] + }, + "id" : "urn:uuid:5129ea85-9f9c-4f56-9926-1e46cf6d6953" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-02-19T20:20:03.870Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T00:47:03.870Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-877758415486529634442315", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-877758415486529634442315", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af" ] + }, + "id" : "urn:uuid:5196cb0f-e56d-4bb5-82fc-2640fb49c9a7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-05T14:34:29.879Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T07:29:53.879Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57a70421-b526-4785-855a-922917104ed8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-457031544171956239708772", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-457031544171956239708772", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, + "id" : "urn:uuid:6f778aa4-9d3d-49f7-9fc2-6451aed319e6" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 37, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 25, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 22, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-740128537508485671448107", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-740128537508485671448107", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750" ] + }, + "id" : "urn:uuid:ba68a352-b3b9-4e5b-8bd6-caf6bba873e2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-18T00:02:09.897Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T10:50:49.897Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-575400309850916408394611", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-575400309850916408394611", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82" ] + }, + "id" : "urn:uuid:23346d32-6015-47d0-94d4-33c2de24c73f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-05-19T17:04:33.907Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T11:38:57.907Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-439882947370633475231254", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-439882947370633475231254", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c" ] + }, + "id" : "urn:uuid:b8b36b07-b237-43fe-8e32-6b12c09ac854" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-03-09T11:18:58.916Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T07:18:03.916Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-662524949395554484616942", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-662524949395554484616942", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9" ] + }, + "id" : "urn:uuid:8df53d54-5a22-44ee-b392-579b420390bd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-12-20T12:25:33.925Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T12:28:49.925Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-943118576724829343712747", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-943118576724829343712747", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332" ] + }, + "id" : "urn:uuid:6ebd108b-aa00-4507-8ca9-8b1f3c890c29" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-05-04T14:30:44.934Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T18:02:10.934Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-078595071686141491419240", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-078595071686141491419240", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784" ] + }, + "id" : "urn:uuid:addeed0c-1c1d-49d0-8fed-b45999b031d6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-17T22:52:04.943Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T10:44:46.943Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-324252149816906606681009", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-324252149816906606681009", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d" ] + }, + "id" : "urn:uuid:f910851f-20a5-4ced-87d9-d81069e4bccf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-17T11:24:28.952Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T09:21:53.952Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-938237302031213298281076", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-938237302031213298281076", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15" ] + }, + "id" : "urn:uuid:a49ccb8f-d112-4ea3-a172-ea8a39ef6acd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-23T22:48:19.961Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T00:51:12.961Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57a70421-b526-4785-855a-922917104ed8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:57a70421-b526-4785-855a-922917104ed8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57a70421-b526-4785-855a-922917104ed8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-722590084035936425482597", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57a70421-b526-4785-855a-922917104ed8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-722590084035936425482597", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:57a70421-b526-4785-855a-922917104ed8" ] + }, + "id" : "urn:uuid:f74be96c-c35d-4494-9a01-a7b6f6726bd9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-17T01:21:49.971Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T13:41:44.971Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-649389448813441138498057", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-649389448813441138498057", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57" ] + }, + "id" : "urn:uuid:e575f595-6008-4c39-9fec-526936999a67" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-25T22:33:57.981Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T00:42:04.981Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "electric", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + }, { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + }, { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "childItems" : [ { + "catenaXId" : "urn:uuid:f186827c-67af-423c-81c5-a5c6942db11d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:46e5d91b-0b70-4b0a-8ac6-33686190c6bb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57dee052-b114-4003-a9c4-ebd0e197641f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:82b2aadf-c08d-420b-a474-306d704fbeeb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3b699c94-e6bc-4163-b685-f9683d409add", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6f3dcaf9-580b-4f17-8e51-83d7e0e69b5e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fe1ac555-ecba-42d5-bfc7-56fea2c59d9c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:17a10219-0d03-4816-8c45-63ca4e46c018", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:60c64b92-2e36-4aa6-8b99-c2de8ac6eae1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:47b69781-947a-498d-9f5a-0b26d6536b1a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e7c4e7ca-d1dc-4b4e-9437-ccce0b74d90c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c99064fa-8be7-498a-8b43-6df7ebca8b85", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5be88a30-5896-43b4-95c9-346cb932707d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7da1d234-00d9-4c9f-a934-36e087fb04f1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e70ea4fe-79e2-476d-829f-56df4c091e87", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2eb195cc-126d-4616-9394-38db99dcef5b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4856c882-6c66-4b33-bd90-e4c7efb47f92", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:da0b0e07-d0fa-444d-b25a-4a3b96850245", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1c6b8466-5257-4269-a686-caf30f28f5d4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:772eace6-5589-4b52-a557-17384edeccde", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:982c36bf-fa34-4289-a731-9b8cd371cd1a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:167f509a-1bcd-4baa-843a-ccc478fee49f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:63fc503b-884a-4e08-9f59-e286b7caaa86", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c4817a1a-2bc0-48cc-a60e-75ffbe28a2ce", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:67708fd5-8abf-471d-8b02-4db5a179c01a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9fe39790-fa48-4c1e-80bd-72200c60b05f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d0c5da48-58b3-4d44-8faf-288b8761e5f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "VR-45", + "key" : "manufacturerPartId" + }, { + "value" : "OMCODBOFAMZSHQKSY", + "key" : "partInstanceId" + }, { + "value" : "OMCODBOFAMZSHQKSY", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2017-12-26T04:02:26.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "partTypeInformation" : { + "manufacturerPartId" : "VR-45", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCODBOFAMZSHQKSY", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "VR-45", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_fully_electric.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Fully Electric" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, + "id" : "urn:uuid:afa1ee9a-44c9-4fe8-8a1b-54fe1c54939a" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 67, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 53, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 72, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 54, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 20, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 63, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 23, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 73, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 31, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 81, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f186827c-67af-423c-81c5-a5c6942db11d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f186827c-67af-423c-81c5-a5c6942db11d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-475001094891697648792585", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f186827c-67af-423c-81c5-a5c6942db11d", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-475001094891697648792585", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f186827c-67af-423c-81c5-a5c6942db11d" ] + }, + "id" : "urn:uuid:6d5d9f4d-6bef-4bd1-8f25-5486d7aac937" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53", + "childItems" : [ { + "catenaXId" : "urn:uuid:a71f34fe-f747-4be6-86d9-2ee1289c4be8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-765410068491625176574624", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-765410068491625176574624", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53" ] + }, + "id" : "urn:uuid:54ab9c74-6f3b-4f4b-92a1-7919a903119c" + } ] + }, { + "catenaXId" : "urn:uuid:a71f34fe-f747-4be6-86d9-2ee1289c4be8", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a71f34fe-f747-4be6-86d9-2ee1289c4be8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-607268806290773659918389", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a71f34fe-f747-4be6-86d9-2ee1289c4be8", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-607268806290773659918389", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a71f34fe-f747-4be6-86d9-2ee1289c4be8" ] + }, + "id" : "urn:uuid:cca7b24f-27a8-4e40-988c-77afc0822023" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5", + "childItems" : [ { + "catenaXId" : "urn:uuid:1369f28c-611c-4da8-8314-9d06bc2651ee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-525036332200895710400260", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-525036332200895710400260", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5" ] + }, + "id" : "urn:uuid:41dae546-d38e-4a7e-94a8-74badc38dfb2" + } ] + }, { + "catenaXId" : "urn:uuid:1369f28c-611c-4da8-8314-9d06bc2651ee", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1369f28c-611c-4da8-8314-9d06bc2651ee" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-729250816131228009364354", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1369f28c-611c-4da8-8314-9d06bc2651ee", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-729250816131228009364354", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1369f28c-611c-4da8-8314-9d06bc2651ee" ] + }, + "id" : "urn:uuid:16ac6f58-bef0-43ae-90e8-52c058be62a8" + } ] + }, { + "catenaXId" : "urn:uuid:46e5d91b-0b70-4b0a-8ac6-33686190c6bb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:46e5d91b-0b70-4b0a-8ac6-33686190c6bb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-265948552243861144044744", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:46e5d91b-0b70-4b0a-8ac6-33686190c6bb", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-265948552243861144044744", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:46e5d91b-0b70-4b0a-8ac6-33686190c6bb" ] + }, + "id" : "urn:uuid:58ece00e-7a77-45bc-9619-45d0c9d46ca4" + } ] + }, { + "catenaXId" : "urn:uuid:57dee052-b114-4003-a9c4-ebd0e197641f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57dee052-b114-4003-a9c4-ebd0e197641f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-905004645583271384544161", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57dee052-b114-4003-a9c4-ebd0e197641f", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-905004645583271384544161", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:57dee052-b114-4003-a9c4-ebd0e197641f" ] + }, + "id" : "urn:uuid:e1b35dc6-e332-4098-a5f7-bb106a3b8f24" + } ] + }, { + "catenaXId" : "urn:uuid:82b2aadf-c08d-420b-a474-306d704fbeeb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:82b2aadf-c08d-420b-a474-306d704fbeeb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-054929528392789766888724", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:82b2aadf-c08d-420b-a474-306d704fbeeb", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-054929528392789766888724", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:82b2aadf-c08d-420b-a474-306d704fbeeb" ] + }, + "id" : "urn:uuid:252ea59f-8efe-406a-95da-dc1efbf51562" + } ] + }, { + "catenaXId" : "urn:uuid:3b699c94-e6bc-4163-b685-f9683d409add", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3b699c94-e6bc-4163-b685-f9683d409add" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-955357357937144223180912", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3b699c94-e6bc-4163-b685-f9683d409add", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-955357357937144223180912", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3b699c94-e6bc-4163-b685-f9683d409add" ] + }, + "id" : "urn:uuid:7bfa36c8-5691-4aa0-9c27-61dc7e3d258d" + } ] + }, { + "catenaXId" : "urn:uuid:6f3dcaf9-580b-4f17-8e51-83d7e0e69b5e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f3dcaf9-580b-4f17-8e51-83d7e0e69b5e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-612936006734858619681417", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f3dcaf9-580b-4f17-8e51-83d7e0e69b5e", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-612936006734858619681417", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6f3dcaf9-580b-4f17-8e51-83d7e0e69b5e" ] + }, + "id" : "urn:uuid:3d448fd5-1986-4013-843a-384583ef5e83" + } ] + }, { + "catenaXId" : "urn:uuid:fe1ac555-ecba-42d5-bfc7-56fea2c59d9c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fe1ac555-ecba-42d5-bfc7-56fea2c59d9c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-310638248593168537673340", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fe1ac555-ecba-42d5-bfc7-56fea2c59d9c", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-310638248593168537673340", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fe1ac555-ecba-42d5-bfc7-56fea2c59d9c" ] + }, + "id" : "urn:uuid:8dd62ea4-eb6d-4a8e-81af-e984c0dc7523" + } ] + }, { + "catenaXId" : "urn:uuid:17a10219-0d03-4816-8c45-63ca4e46c018", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:17a10219-0d03-4816-8c45-63ca4e46c018" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-038720765367471323586266", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:17a10219-0d03-4816-8c45-63ca4e46c018", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-038720765367471323586266", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:17a10219-0d03-4816-8c45-63ca4e46c018" ] + }, + "id" : "urn:uuid:7dbfb0f4-5258-4f30-be33-56bd1df78391" + } ] + }, { + "catenaXId" : "urn:uuid:60c64b92-2e36-4aa6-8b99-c2de8ac6eae1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:60c64b92-2e36-4aa6-8b99-c2de8ac6eae1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-761327121063810044670804", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:60c64b92-2e36-4aa6-8b99-c2de8ac6eae1", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-761327121063810044670804", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:60c64b92-2e36-4aa6-8b99-c2de8ac6eae1" ] + }, + "id" : "urn:uuid:0b6f6180-bb32-40a3-af88-10b45a4bff29" + } ] + }, { + "catenaXId" : "urn:uuid:47b69781-947a-498d-9f5a-0b26d6536b1a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:47b69781-947a-498d-9f5a-0b26d6536b1a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-835111955918666511763440", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:47b69781-947a-498d-9f5a-0b26d6536b1a", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-835111955918666511763440", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:47b69781-947a-498d-9f5a-0b26d6536b1a" ] + }, + "id" : "urn:uuid:3042303a-f3bb-4bfa-9d71-bbea8fd1fc20" + } ] + }, { + "catenaXId" : "urn:uuid:e7c4e7ca-d1dc-4b4e-9437-ccce0b74d90c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e7c4e7ca-d1dc-4b4e-9437-ccce0b74d90c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-872230923643933358783221", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e7c4e7ca-d1dc-4b4e-9437-ccce0b74d90c", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-872230923643933358783221", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e7c4e7ca-d1dc-4b4e-9437-ccce0b74d90c" ] + }, + "id" : "urn:uuid:32a46004-4ce1-47a1-a084-1dd37d43b5ba" + } ] + }, { + "catenaXId" : "urn:uuid:c99064fa-8be7-498a-8b43-6df7ebca8b85", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c99064fa-8be7-498a-8b43-6df7ebca8b85" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-195429555954391469920383", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c99064fa-8be7-498a-8b43-6df7ebca8b85", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-195429555954391469920383", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c99064fa-8be7-498a-8b43-6df7ebca8b85" ] + }, + "id" : "urn:uuid:27ecbfe8-8ff3-4ccc-a2dd-48154e9b13df" + } ] + }, { + "catenaXId" : "urn:uuid:5be88a30-5896-43b4-95c9-346cb932707d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5be88a30-5896-43b4-95c9-346cb932707d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-557123959436303288851227", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5be88a30-5896-43b4-95c9-346cb932707d", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-557123959436303288851227", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5be88a30-5896-43b4-95c9-346cb932707d" ] + }, + "id" : "urn:uuid:497e95a9-b8ea-4b41-9ce5-e2f491b83d85" + } ] + }, { + "catenaXId" : "urn:uuid:7da1d234-00d9-4c9f-a934-36e087fb04f1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7da1d234-00d9-4c9f-a934-36e087fb04f1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-819582860653818457354901", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7da1d234-00d9-4c9f-a934-36e087fb04f1", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-819582860653818457354901", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7da1d234-00d9-4c9f-a934-36e087fb04f1" ] + }, + "id" : "urn:uuid:487c2764-6636-4f1e-a844-8b7cddcc54ab" + } ] + }, { + "catenaXId" : "urn:uuid:e70ea4fe-79e2-476d-829f-56df4c091e87", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e70ea4fe-79e2-476d-829f-56df4c091e87" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-584789323450415175685949", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e70ea4fe-79e2-476d-829f-56df4c091e87", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-584789323450415175685949", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e70ea4fe-79e2-476d-829f-56df4c091e87" ] + }, + "id" : "urn:uuid:9354251c-79e9-44ea-bcc7-1a44e047dde7" + } ] + }, { + "catenaXId" : "urn:uuid:2eb195cc-126d-4616-9394-38db99dcef5b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2eb195cc-126d-4616-9394-38db99dcef5b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-470328655664462236742014", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2eb195cc-126d-4616-9394-38db99dcef5b", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-470328655664462236742014", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2eb195cc-126d-4616-9394-38db99dcef5b" ] + }, + "id" : "urn:uuid:7f8dfe9f-e6c6-4f91-a4e2-d54fa6b431f6" + } ] + }, { + "catenaXId" : "urn:uuid:4856c882-6c66-4b33-bd90-e4c7efb47f92", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4856c882-6c66-4b33-bd90-e4c7efb47f92" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-074312973809005572157355", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4856c882-6c66-4b33-bd90-e4c7efb47f92", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-074312973809005572157355", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4856c882-6c66-4b33-bd90-e4c7efb47f92" ] + }, + "id" : "urn:uuid:83872f13-d467-4d1c-8501-79877b31ed8a" + } ] + }, { + "catenaXId" : "urn:uuid:da0b0e07-d0fa-444d-b25a-4a3b96850245", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:da0b0e07-d0fa-444d-b25a-4a3b96850245" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-539959326134697353808811", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:da0b0e07-d0fa-444d-b25a-4a3b96850245", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-539959326134697353808811", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:da0b0e07-d0fa-444d-b25a-4a3b96850245" ] + }, + "id" : "urn:uuid:802c8b53-7cde-4c1c-a92c-7d14b32864db" + } ] + }, { + "catenaXId" : "urn:uuid:1c6b8466-5257-4269-a686-caf30f28f5d4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1c6b8466-5257-4269-a686-caf30f28f5d4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-586072404671723229939286", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1c6b8466-5257-4269-a686-caf30f28f5d4", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-586072404671723229939286", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1c6b8466-5257-4269-a686-caf30f28f5d4" ] + }, + "id" : "urn:uuid:81465413-7572-42d4-8e4d-20a3ac5ef6c0" + } ] + }, { + "catenaXId" : "urn:uuid:772eace6-5589-4b52-a557-17384edeccde", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:772eace6-5589-4b52-a557-17384edeccde" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-682026908425301467194207", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:772eace6-5589-4b52-a557-17384edeccde", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-682026908425301467194207", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:772eace6-5589-4b52-a557-17384edeccde" ] + }, + "id" : "urn:uuid:dfc0f593-c64c-4106-9ae9-15a88d0d846a" + } ] + }, { + "catenaXId" : "urn:uuid:982c36bf-fa34-4289-a731-9b8cd371cd1a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:982c36bf-fa34-4289-a731-9b8cd371cd1a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-685042642096303845294169", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:982c36bf-fa34-4289-a731-9b8cd371cd1a", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-685042642096303845294169", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:982c36bf-fa34-4289-a731-9b8cd371cd1a" ] + }, + "id" : "urn:uuid:a1e73a30-83bb-4b4a-871a-6b79621e9623" + } ] + }, { + "catenaXId" : "urn:uuid:167f509a-1bcd-4baa-843a-ccc478fee49f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:167f509a-1bcd-4baa-843a-ccc478fee49f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-986533282413989025191201", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:167f509a-1bcd-4baa-843a-ccc478fee49f", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-986533282413989025191201", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:167f509a-1bcd-4baa-843a-ccc478fee49f" ] + }, + "id" : "urn:uuid:5c823cc8-3ef3-42cf-b71a-98fb9a31dab7" + } ] + }, { + "catenaXId" : "urn:uuid:63fc503b-884a-4e08-9f59-e286b7caaa86", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:63fc503b-884a-4e08-9f59-e286b7caaa86" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-801180446055137416372035", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:63fc503b-884a-4e08-9f59-e286b7caaa86", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-801180446055137416372035", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:63fc503b-884a-4e08-9f59-e286b7caaa86" ] + }, + "id" : "urn:uuid:19c29086-f5af-4d64-8064-bcb07ba2b1b7" + } ] + }, { + "catenaXId" : "urn:uuid:c4817a1a-2bc0-48cc-a60e-75ffbe28a2ce", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c4817a1a-2bc0-48cc-a60e-75ffbe28a2ce" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-195300457065137308572547", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c4817a1a-2bc0-48cc-a60e-75ffbe28a2ce", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-195300457065137308572547", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c4817a1a-2bc0-48cc-a60e-75ffbe28a2ce" ] + }, + "id" : "urn:uuid:021685e9-1b96-490e-ba02-9bc7cd233a3a" + } ] + }, { + "catenaXId" : "urn:uuid:67708fd5-8abf-471d-8b02-4db5a179c01a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:67708fd5-8abf-471d-8b02-4db5a179c01a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-234430723868138099528002", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:67708fd5-8abf-471d-8b02-4db5a179c01a", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-234430723868138099528002", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:67708fd5-8abf-471d-8b02-4db5a179c01a" ] + }, + "id" : "urn:uuid:eea320a7-97ee-4acb-8aba-99c4d559fd44" + } ] + }, { + "catenaXId" : "urn:uuid:9fe39790-fa48-4c1e-80bd-72200c60b05f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9fe39790-fa48-4c1e-80bd-72200c60b05f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-172101185078020205745187", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9fe39790-fa48-4c1e-80bd-72200c60b05f", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-172101185078020205745187", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9fe39790-fa48-4c1e-80bd-72200c60b05f" ] + }, + "id" : "urn:uuid:509f4589-7522-441b-b0b7-613d58e6f9f2" + } ] + }, { + "catenaXId" : "urn:uuid:d0c5da48-58b3-4d44-8faf-288b8761e5f2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d0c5da48-58b3-4d44-8faf-288b8761e5f2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-483442124497855414130265", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d0c5da48-58b3-4d44-8faf-288b8761e5f2", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-483442124497855414130265", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d0c5da48-58b3-4d44-8faf-288b8761e5f2" ] + }, + "id" : "urn:uuid:6cce3bd0-0264-4660-8651-97b4b7be98ab" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", + "childItems" : [ { + "catenaXId" : "urn:uuid:99d5be0d-38fd-4261-bbe7-55f742c85a6d", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:433a69b3-c65e-4bd5-9b97-674fd2613fec", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-333935605572876453705100", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-333935605572876453705100", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-333935605572876453705100", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152" ] + }, + "id" : "urn:uuid:c8261ea0-a38e-4d33-9678-85532d85fc8f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 85, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 58, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 23, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:99d5be0d-38fd-4261-bbe7-55f742c85a6d", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:99d5be0d-38fd-4261-bbe7-55f742c85a6d" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "77406Y1-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-963946683632434228954505", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:99d5be0d-38fd-4261-bbe7-55f742c85a6d", + "partTypeInformation" : { + "manufacturerPartId" : "77406Y1-73", + "customerPartId" : "77406Y1-73", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 6, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 27, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb", + "childItems" : [ { + "catenaXId" : "urn:uuid:5441dbcc-3bd6-4a67-bee1-882f4efe9e27", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "79211Y9-97", + "key" : "manufacturerPartId" + }, { + "value" : "NO-775104953242079042976231", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb", + "partTypeInformation" : { + "manufacturerPartId" : "79211Y9-97", + "customerPartId" : "79211Y9-97", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-775104953242079042976231", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "79211Y9-97", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb" ] + }, + "id" : "urn:uuid:2fd3f304-1146-4031-ae62-5667ff290c61" + } ] + }, { + "catenaXId" : "urn:uuid:5441dbcc-3bd6-4a67-bee1-882f4efe9e27", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5441dbcc-3bd6-4a67-bee1-882f4efe9e27" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "89483V6-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-359171257171042417467032", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5441dbcc-3bd6-4a67-bee1-882f4efe9e27", + "partTypeInformation" : { + "manufacturerPartId" : "89483V6-61", + "customerPartId" : "89483V6-61", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 78, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 33, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:433a69b3-c65e-4bd5-9b97-674fd2613fec", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:433a69b3-c65e-4bd5-9b97-674fd2613fec", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:433a69b3-c65e-4bd5-9b97-674fd2613fec" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "87566J1-93", + "key" : "manufacturerPartId" + }, { + "value" : "NO-333926264383825421508469", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:433a69b3-c65e-4bd5-9b97-674fd2613fec", + "partTypeInformation" : { + "manufacturerPartId" : "87566J1-93", + "customerPartId" : "87566J1-93", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e", + "childItems" : [ { + "catenaXId" : "urn:uuid:4f432782-9bf5-41ee-a55b-5342cc4e63a9", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d59c7866-2412-43f9-8463-2be6a8dc23bd", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "46976C7-53", + "key" : "manufacturerPartId" + }, { + "value" : "NO-095032408572046294924232", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e", + "partTypeInformation" : { + "manufacturerPartId" : "46976C7-53", + "customerPartId" : "46976C7-53", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-095032408572046294924232", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "46976C7-53", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e" ] + }, + "id" : "urn:uuid:380213bb-1bcd-4644-9c6d-3372360abd37" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 12, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:4f432782-9bf5-41ee-a55b-5342cc4e63a9", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f432782-9bf5-41ee-a55b-5342cc4e63a9" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "31014B4-58", + "key" : "manufacturerPartId" + }, { + "value" : "NO-962907488924290084756617", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f432782-9bf5-41ee-a55b-5342cc4e63a9", + "partTypeInformation" : { + "manufacturerPartId" : "31014B4-58", + "customerPartId" : "31014B4-58", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 10, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 87, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5", + "childItems" : [ { + "catenaXId" : "urn:uuid:d8a44393-81a0-47e4-a689-c0aa8059aaad", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "56572P9-71", + "key" : "manufacturerPartId" + }, { + "value" : "NO-973817098676812381776551", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5", + "partTypeInformation" : { + "manufacturerPartId" : "56572P9-71", + "customerPartId" : "56572P9-71", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-973817098676812381776551", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "56572P9-71", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5" ] + }, + "id" : "urn:uuid:da74e041-80a5-4cc6-b305-138b7b03a443" + } ] + }, { + "catenaXId" : "urn:uuid:d8a44393-81a0-47e4-a689-c0aa8059aaad", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d8a44393-81a0-47e4-a689-c0aa8059aaad" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "65949M9-53", + "key" : "manufacturerPartId" + }, { + "value" : "NO-785080077575585722414017", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d8a44393-81a0-47e4-a689-c0aa8059aaad", + "partTypeInformation" : { + "manufacturerPartId" : "65949M9-53", + "customerPartId" : "65949M9-53", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 11, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 68, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d59c7866-2412-43f9-8463-2be6a8dc23bd", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d59c7866-2412-43f9-8463-2be6a8dc23bd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "60876L3-29", + "key" : "manufacturerPartId" + }, { + "value" : "NO-388472464228463569408980", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d59c7866-2412-43f9-8463-2be6a8dc23bd", + "partTypeInformation" : { + "manufacturerPartId" : "60876L3-29", + "customerPartId" : "60876L3-29", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-388472464228463569408980", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "60876L3-29", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d59c7866-2412-43f9-8463-2be6a8dc23bd" ] + }, + "id" : "urn:uuid:157513fe-344c-4c14-977e-6df0d06e21a2" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 32, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 81, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "childItems" : [ { + "catenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-374585524300920130148601", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-374585524300920130148601", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c" ] + }, + "id" : "urn:uuid:5a12477c-7a40-4819-988a-9a3377160015" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 23, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 76, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 69, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-383040079065577825600649", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-383040079065577825600649", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, + "id" : "urn:uuid:70d60575-b031-4dc2-90d4-c683b718c0aa" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 53, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 19, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 30, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-448137915753356348449486", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-448137915753356348449486", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228" ] + }, + "id" : "urn:uuid:9c87094b-71c1-4c29-83f3-ac407afebb3f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-11-20T12:50:27.145Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T18:16:41.145Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-498600988736269437603977", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-498600988736269437603977", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593" ] + }, + "id" : "urn:uuid:487c094a-d17d-4350-9eab-16b8ed466ea1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-05T16:48:10.155Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T16:02:11.155Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-814507361551485291211780", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-814507361551485291211780", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b" ] + }, + "id" : "urn:uuid:26652c21-8484-4372-a0a7-958bcae5f504" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-24T17:50:13.166Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T07:48:00.166Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-293704673772070955527682", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-293704673772070955527682", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27" ] + }, + "id" : "urn:uuid:1ddf0de4-604d-4fc4-a817-22cfa681f90d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-19T03:25:54.175Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T04:13:03.175Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-976053112285509726411377", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-976053112285509726411377", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc" ] + }, + "id" : "urn:uuid:436974b3-c332-4d54-af9c-9af6d0cc2056" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-04-23T19:28:02.184Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T10:51:00.184Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-644283887449565098727271", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-644283887449565098727271", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204" ] + }, + "id" : "urn:uuid:f2492abd-cd46-432e-afd7-e67ea565ba12" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-06T03:07:29.193Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T08:35:31.193Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-024602168961795750754666", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-024602168961795750754666", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e" ] + }, + "id" : "urn:uuid:4f16c37b-82e0-4f5b-b5ef-f037497ea716" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-19T11:50:21.204Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T19:51:01.204Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-867309689655932716666999", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-867309689655932716666999", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7" ] + }, + "id" : "urn:uuid:49ba1e4c-a367-4b71-b1d5-8b5966f12e22" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-29T08:57:59.215Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T15:31:16.215Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-539538685636116115268821", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-539538685636116115268821", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892" ] + }, + "id" : "urn:uuid:a6862eb1-1f95-4ef9-8646-4fa9dcb95011" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-03T22:15:06.225Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T10:03:37.225Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-209614433518514505823490", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-209614433518514505823490", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a" ] + }, + "id" : "urn:uuid:67adea2e-5565-476a-b8b2-6f81e3671b0a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-01-05T23:46:03.236Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T18:50:26.236Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-669308306694340417304404", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-669308306694340417304404", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, + "id" : "urn:uuid:0187fc4a-6562-4ca7-b3f0-6dc1fe5bc01c" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 37, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 17, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 74, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-874471140985766113073043", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-874471140985766113073043", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8" ] + }, + "id" : "urn:uuid:45793074-74a6-417e-bfc3-8779a67a2d75" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-20T07:53:53.257Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T16:35:05.257Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-176639885392846937045764", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-176639885392846937045764", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338" ] + }, + "id" : "urn:uuid:ebf6d233-07c6-452b-a92d-7a5faa997ad8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-13T23:49:02.267Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T18:13:24.267Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-810133212226616217437538", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-810133212226616217437538", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015" ] + }, + "id" : "urn:uuid:57e8997d-369f-41d2-a474-429bf513f81d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-13T04:14:46.276Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T11:40:41.276Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-056619220178271412144952", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-056619220178271412144952", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb" ] + }, + "id" : "urn:uuid:6067f833-de1f-41bb-bfbf-76d0bec05fc7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-08T17:57:13.285Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T11:00:49.285Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-882266617022517938277582", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-882266617022517938277582", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031" ] + }, + "id" : "urn:uuid:e6716f3c-9e69-4d9d-a726-1cdd2297775e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-23T11:35:12.294Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T08:35:44.294Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-418067291303885802296684", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-418067291303885802296684", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b" ] + }, + "id" : "urn:uuid:0344f384-36db-4307-887c-e1f16beb8515" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-04-05T15:10:31.303Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T01:52:32.303Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-244541906950648596940925", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-244541906950648596940925", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0" ] + }, + "id" : "urn:uuid:d881158f-660c-438f-b373-16b8e75f3ef3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-02T18:26:59.312Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T00:06:01.312Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-391991006904021385254192", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-391991006904021385254192", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698" ] + }, + "id" : "urn:uuid:9afd5d25-4d42-438b-b132-caf62c6e20c8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-02-04T03:46:07.322Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T21:54:10.322Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-582629778070079948983828", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-582629778070079948983828", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d" ] + }, + "id" : "urn:uuid:14d48841-9537-4a0d-b586-3d7524e4e907" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-21T10:45:28.331Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T01:11:26.331Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-517993762237670212654199", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-517993762237670212654199", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4" ] + }, + "id" : "urn:uuid:98291d6c-d5c9-424b-9eec-613fdb015c8a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-26T01:49:48.340Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T23:24:50.340Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-351322611746601466728480", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-351322611746601466728480", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, + "id" : "urn:uuid:b16ff049-9b23-4c5c-b3ee-66833322703c" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 77, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 52, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 65, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-086547013302795799495350", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-086547013302795799495350", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4" ] + }, + "id" : "urn:uuid:6ab86f85-0d85-44eb-aed9-3bf9c2b8ef4f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-04-27T19:15:55.359Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T04:22:38.359Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-213568418602107352377978", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-213568418602107352377978", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7" ] + }, + "id" : "urn:uuid:b1e099f4-7d15-46e6-9dc3-0ad2b9a09789" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-16T01:40:38.368Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T13:37:03.368Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-422933329099358548730592", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-422933329099358548730592", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62" ] + }, + "id" : "urn:uuid:8097205b-be13-4dc5-9053-760c39760fc1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-31T01:37:33.377Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T09:09:31.377Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-504832623658802901515447", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-504832623658802901515447", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e" ] + }, + "id" : "urn:uuid:58847c59-9815-42a6-b62f-edfaa490e10a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-08T23:16:00.386Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T06:25:57.386Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-121607948508521508073189", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-121607948508521508073189", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741" ] + }, + "id" : "urn:uuid:6563f1e3-1fe6-4813-a176-c5fa9234a5a8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-04T08:56:34.395Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T13:30:07.395Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-475529310710824333764490", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-475529310710824333764490", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9" ] + }, + "id" : "urn:uuid:d8ed118b-da86-4cd0-8d40-61beff49200c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-22T19:54:40.404Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T02:59:05.404Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-141016502033518860472632", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-141016502033518860472632", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831" ] + }, + "id" : "urn:uuid:7346557c-61c6-40e6-8366-8e502f69fd3c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-08-30T03:22:55.413Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T06:36:42.413Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-816939590582626733347150", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-816939590582626733347150", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65" ] + }, + "id" : "urn:uuid:f6dfac3c-df01-458d-856c-e444a793335a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-03-16T13:13:41.422Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T06:42:33.422Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-929019486240006100154509", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-929019486240006100154509", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be" ] + }, + "id" : "urn:uuid:5e3d8510-2076-4866-be33-c575d92c9b98" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-16T15:06:43.431Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T15:45:34.431Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-285211589838878277257896", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-285211589838878277257896", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395" ] + }, + "id" : "urn:uuid:61daae47-6d88-4541-954c-0d3139d5d2f5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-02-03T18:11:59.439Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T04:45:15.439Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1e564b09-9353-4726-935b-8f388825f710", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-550876196621131742773083", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-550876196621131742773083", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, + "id" : "urn:uuid:66af9373-aad9-4ddd-8224-1bc12f1fcea8" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 72, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 62, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 74, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-809378597420347411310491", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-809378597420347411310491", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280" ] + }, + "id" : "urn:uuid:e3009edf-5400-47dc-a00b-0b3dfa5dfcee" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-19T17:17:24.458Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T02:58:34.458Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1e564b09-9353-4726-935b-8f388825f710", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1e564b09-9353-4726-935b-8f388825f710", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1e564b09-9353-4726-935b-8f388825f710" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-946671276444273189038046", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1e564b09-9353-4726-935b-8f388825f710", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-946671276444273189038046", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1e564b09-9353-4726-935b-8f388825f710" ] + }, + "id" : "urn:uuid:464610c4-b3d3-4e30-b190-7e50fbfdce8a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-24T11:15:53.467Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T14:14:41.467Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-614968882981830414861128", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-614968882981830414861128", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56" ] + }, + "id" : "urn:uuid:00129f8c-65e7-417f-9540-dc01bbfbceae" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-22T21:17:32.476Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T17:16:26.476Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-459041598264653067736861", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-459041598264653067736861", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15" ] + }, + "id" : "urn:uuid:0b45ee96-a7fe-45f7-b38a-19a30a0fba49" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-24T03:31:55.485Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T15:55:46.485Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-902259164636077845091378", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-902259164636077845091378", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53" ] + }, + "id" : "urn:uuid:f06128bd-3052-47af-b5f5-6f628249c156" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-26T10:24:35.493Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T05:09:27.493Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-381837140628010911421511", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-381837140628010911421511", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa" ] + }, + "id" : "urn:uuid:1b181c74-c251-454f-8c6c-e3477afdd008" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-19T08:05:01.502Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T17:31:37.502Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-567298114153242540499347", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-567298114153242540499347", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b" ] + }, + "id" : "urn:uuid:a1b942e9-2e73-44bf-a3e6-82cb7799e0e2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-02-17T05:08:51.511Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T00:02:47.511Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-488670532186779970322843", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-488670532186779970322843", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a" ] + }, + "id" : "urn:uuid:b38488f6-fa3a-40c9-8fd8-f288f7bb26f4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-25T03:25:52.519Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T16:33:44.519Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-570760943247639451788602", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-570760943247639451788602", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939" ] + }, + "id" : "urn:uuid:0fd27d85-3385-4fc7-8bdd-b9eb9d1ce71a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-28T01:55:19.528Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T03:40:40.528Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-639498019047200540947472", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-639498019047200540947472", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771" ] + }, + "id" : "urn:uuid:dac97537-ea54-466a-812e-97f86e952707" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-15T15:31:51.537Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T03:35:47.537Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-251337351546154013195281", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-251337351546154013195281", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, + "id" : "urn:uuid:076b79a6-16cb-4842-8f75-4101f0292ee9" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 78, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 9, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 63, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-953047943331098727626497", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-953047943331098727626497", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5" ] + }, + "id" : "urn:uuid:eaf32324-cf47-4daa-a4dd-f5d54e5caaae" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-27T19:58:51.556Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T00:31:56.556Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-138152357959265580681827", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-138152357959265580681827", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1" ] + }, + "id" : "urn:uuid:bdeef0c1-7036-4fc2-a458-c302b475554d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-20T19:20:06.565Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T19:10:40.565Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-838260426853122033652771", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-838260426853122033652771", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343" ] + }, + "id" : "urn:uuid:21061afc-a7eb-4c23-b8d2-ccf0a611279a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-09-25T18:05:53.574Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T11:33:59.574Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-572852625794872323828154", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-572852625794872323828154", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8" ] + }, + "id" : "urn:uuid:7d7d108e-b5b5-40cc-b3db-b4c6ad3913d9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-13T15:48:07.583Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T02:48:00.583Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-324222167043822656214159", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-324222167043822656214159", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289" ] + }, + "id" : "urn:uuid:a34182aa-932b-4b37-9ee4-2190050958d3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-22T08:37:26.592Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T12:22:25.592Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-453207950716029382255189", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-453207950716029382255189", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586" ] + }, + "id" : "urn:uuid:996d5321-36f3-4333-9f13-fa216368cabc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-12-24T14:45:21.601Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T23:05:50.601Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-703473107872803419436004", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-703473107872803419436004", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3" ] + }, + "id" : "urn:uuid:a6f43d80-de16-4c66-a8ee-daa6263f2883" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-01T15:26:25.609Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T11:10:28.609Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-526263912445478429241606", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-526263912445478429241606", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5" ] + }, + "id" : "urn:uuid:4aa743f6-b5c5-460b-b565-9a37a1c6038f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-11T06:34:48.618Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T18:11:14.618Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-319148186846826455601636", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-319148186846826455601636", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c" ] + }, + "id" : "urn:uuid:02328bd8-6eac-4f97-9331-f45298529185" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-24T05:38:59.627Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T11:52:45.627Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-073501174449798051413977", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-073501174449798051413977", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7" ] + }, + "id" : "urn:uuid:dacdeda9-00be-4f8c-ab6f-250798973e6d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-08-14T17:48:16.636Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T21:01:12.636Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-945569013087946154504275", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-945569013087946154504275", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, + "id" : "urn:uuid:8d9d066b-78e6-40bc-8b87-7ec0af8f75b3" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 5, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 74, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 89, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-962994987518057703902327", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-962994987518057703902327", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a" ] + }, + "id" : "urn:uuid:64d3fb92-b185-42fc-b5cd-dccf9cfd5844" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-18T17:39:16.654Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T00:58:02.654Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-951589172297337343126134", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-951589172297337343126134", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54" ] + }, + "id" : "urn:uuid:171c5d19-1bb7-4125-a1c4-3610a0f48c9b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-07T07:31:14.665Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T09:21:59.665Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-239744277642803687736065", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-239744277642803687736065", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5" ] + }, + "id" : "urn:uuid:07ff1f56-382e-413f-9ee5-bfa13d315b7f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-06-19T17:51:18.677Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T11:39:50.677Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-489087211976181211456415", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-489087211976181211456415", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c" ] + }, + "id" : "urn:uuid:d5855c44-566d-4a53-9d60-684b34b85c0b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-13T17:12:24.689Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T17:35:05.689Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-370781932009665471864198", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-370781932009665471864198", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e" ] + }, + "id" : "urn:uuid:522716aa-752f-4c6d-a409-1b18fb04926c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-24T14:28:24.701Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T05:58:11.701Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-036891230686017705677516", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-036891230686017705677516", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee" ] + }, + "id" : "urn:uuid:034d5b91-ec54-476b-be3b-0afebec7e193" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-26T20:33:58.712Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T13:53:21.712Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-510324671997492874115307", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-510324671997492874115307", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041" ] + }, + "id" : "urn:uuid:012580f5-ef79-4b22-9490-fddfd2dedf35" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-27T08:05:17.721Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T20:44:32.721Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-942881654701979725621846", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-942881654701979725621846", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab" ] + }, + "id" : "urn:uuid:ca326eee-9aaf-47c8-8b09-ca35739ec981" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-04T03:02:23.731Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T07:56:16.731Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-411884020328362088821863", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-411884020328362088821863", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842" ] + }, + "id" : "urn:uuid:30506659-43a8-47cb-9116-28718147837b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-15T22:59:28.741Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T08:34:38.741Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-735598825023377753893371", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-735598825023377753893371", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25" ] + }, + "id" : "urn:uuid:cd2cbd71-bfbd-46dc-9e4a-fe53b36f9635" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-31T09:53:16.751Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T19:22:25.751Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "electric", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "childItems" : [ { + "catenaXId" : "urn:uuid:6875a8bc-f4f7-4d9b-af54-99760f5e483c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6ae855c1-a9a3-48d5-b8f9-0ba39751ce52", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:94887f91-86d2-42f3-a889-97efad251002", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c33f4513-9fae-4ff4-8a17-493e0b48f72b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6a67900c-2ac0-43c9-8c92-1060fd1dbe29", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9c268030-0bde-42d0-848a-e60360fab623", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:706c8171-fd94-4c2e-8a43-b3cc6f682294", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bb0ee1f6-b151-44c3-b092-932fe29d6f8d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b6641421-9e65-4c15-a384-19938b320ae2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3c723540-f1ea-42ff-8f2a-d0cbce069a33", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:88d03b0d-bbff-48ce-913e-e425d29ed6ed", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e90ad517-06ea-4252-96bd-8863282e91c9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d151ceb5-bcd9-4fd2-ba6f-559f718b2451", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c576f762-533f-4a4c-abf6-ad8aa149cf15", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:14482a3d-57f8-4c86-8418-2ebab284c634", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cfa317a9-28ce-4efb-a9e8-8882d5921e9e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c18a36e1-8edd-4895-b24c-4a3fd864eb3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d8dc6e59-161d-4323-97ed-56302ea7a827", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9a6c557b-ba4c-4f44-b8d0-8c6b51ead200", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8d73533f-997d-4776-aaa4-0713511ceef9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f145cf2e-7d3a-4362-a911-133ed0052601", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3da74474-1b9d-45b1-99d2-af79aa508b93", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4b86ddec-ddb5-4927-a813-ca0c53f84981", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4f84a861-83ae-415a-b7d0-5b5432a890a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:277a5602-5ca2-4e21-801c-330836fdcf06", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:54a952ce-4b3d-48d5-ba55-8c3a4595f476", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:15a5ac55-f21a-48ba-b893-6b2310fa6923", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "DL-82", + "key" : "manufacturerPartId" + }, { + "value" : "OMARTGOXXOQGOQHSK", + "key" : "partInstanceId" + }, { + "value" : "OMARTGOXXOQGOQHSK", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2019-09-03T20:12:35.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "partTypeInformation" : { + "manufacturerPartId" : "DL-82", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMARTGOXXOQGOQHSK", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "DL-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_fully_electric.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Fully Electric" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, + "id" : "urn:uuid:ade50c0c-7266-47ef-a195-f195e55aa4a7" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 42, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 5, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 70, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 39, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 45, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 58, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 34, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 29, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 81, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 76, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:6875a8bc-f4f7-4d9b-af54-99760f5e483c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6875a8bc-f4f7-4d9b-af54-99760f5e483c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-177699030660742654077333", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6875a8bc-f4f7-4d9b-af54-99760f5e483c", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-177699030660742654077333", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6875a8bc-f4f7-4d9b-af54-99760f5e483c" ] + }, + "id" : "urn:uuid:1ca2a1a1-614c-43a4-9e98-d8a791193e1c" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1", + "childItems" : [ { + "catenaXId" : "urn:uuid:b680a188-d241-4b18-9c0e-b9977568711e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-088999000929767272317633", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-088999000929767272317633", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1" ] + }, + "id" : "urn:uuid:d87b8e61-04f2-4dfd-8306-1a8c54e00ae7" + } ] + }, { + "catenaXId" : "urn:uuid:b680a188-d241-4b18-9c0e-b9977568711e", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b680a188-d241-4b18-9c0e-b9977568711e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-010278302402586765653277", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b680a188-d241-4b18-9c0e-b9977568711e", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-010278302402586765653277", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b680a188-d241-4b18-9c0e-b9977568711e" ] + }, + "id" : "urn:uuid:2c061018-79aa-43eb-ac4c-7cc6c8357e63" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2", + "childItems" : [ { + "catenaXId" : "urn:uuid:71bb4972-744c-44ca-89c6-d97648cf5313", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-862426161486842109863778", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-862426161486842109863778", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2" ] + }, + "id" : "urn:uuid:4d7a4c07-7c19-4452-8fd0-a5e0633f6765" + } ] + }, { + "catenaXId" : "urn:uuid:71bb4972-744c-44ca-89c6-d97648cf5313", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:71bb4972-744c-44ca-89c6-d97648cf5313" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-705261610495984067574240", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:71bb4972-744c-44ca-89c6-d97648cf5313", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-705261610495984067574240", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:71bb4972-744c-44ca-89c6-d97648cf5313" ] + }, + "id" : "urn:uuid:4e8d1d24-d1f5-425a-9c26-aa160d7acbea" + } ] + }, { + "catenaXId" : "urn:uuid:6ae855c1-a9a3-48d5-b8f9-0ba39751ce52", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6ae855c1-a9a3-48d5-b8f9-0ba39751ce52" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-557987633480830231773357", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ae855c1-a9a3-48d5-b8f9-0ba39751ce52", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-557987633480830231773357", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6ae855c1-a9a3-48d5-b8f9-0ba39751ce52" ] + }, + "id" : "urn:uuid:109bad1b-9771-4c00-b8db-92f6de7b5b39" + } ] + }, { + "catenaXId" : "urn:uuid:94887f91-86d2-42f3-a889-97efad251002", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:94887f91-86d2-42f3-a889-97efad251002" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-705392215410853863911263", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:94887f91-86d2-42f3-a889-97efad251002", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-705392215410853863911263", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:94887f91-86d2-42f3-a889-97efad251002" ] + }, + "id" : "urn:uuid:b9b14a6b-1360-4029-a4a9-cf7f26581caa" + } ] + }, { + "catenaXId" : "urn:uuid:c33f4513-9fae-4ff4-8a17-493e0b48f72b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c33f4513-9fae-4ff4-8a17-493e0b48f72b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-720490464810641122002934", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c33f4513-9fae-4ff4-8a17-493e0b48f72b", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-720490464810641122002934", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c33f4513-9fae-4ff4-8a17-493e0b48f72b" ] + }, + "id" : "urn:uuid:0fc41d77-1494-4de7-a40b-c17bb582b633" + } ] + }, { + "catenaXId" : "urn:uuid:6a67900c-2ac0-43c9-8c92-1060fd1dbe29", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6a67900c-2ac0-43c9-8c92-1060fd1dbe29" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-874725706709803011240956", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6a67900c-2ac0-43c9-8c92-1060fd1dbe29", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-874725706709803011240956", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6a67900c-2ac0-43c9-8c92-1060fd1dbe29" ] + }, + "id" : "urn:uuid:9b747550-177b-4cc3-8f11-cb8d9ae69b96" + } ] + }, { + "catenaXId" : "urn:uuid:9c268030-0bde-42d0-848a-e60360fab623", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9c268030-0bde-42d0-848a-e60360fab623" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-482307562058386460209758", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9c268030-0bde-42d0-848a-e60360fab623", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-482307562058386460209758", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9c268030-0bde-42d0-848a-e60360fab623" ] + }, + "id" : "urn:uuid:0873a2e4-9586-44ad-90ac-0da282a6eb32" + } ] + }, { + "catenaXId" : "urn:uuid:706c8171-fd94-4c2e-8a43-b3cc6f682294", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:706c8171-fd94-4c2e-8a43-b3cc6f682294" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-797310308167828346481648", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:706c8171-fd94-4c2e-8a43-b3cc6f682294", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-797310308167828346481648", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:706c8171-fd94-4c2e-8a43-b3cc6f682294" ] + }, + "id" : "urn:uuid:2d8f9e30-abc5-4311-a4e7-ec5fb4e10947" + } ] + }, { + "catenaXId" : "urn:uuid:bb0ee1f6-b151-44c3-b092-932fe29d6f8d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bb0ee1f6-b151-44c3-b092-932fe29d6f8d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-826137758481752687244701", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bb0ee1f6-b151-44c3-b092-932fe29d6f8d", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-826137758481752687244701", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bb0ee1f6-b151-44c3-b092-932fe29d6f8d" ] + }, + "id" : "urn:uuid:7048e1f6-1cd8-4e4f-aa26-e73e5168590e" + } ] + }, { + "catenaXId" : "urn:uuid:b6641421-9e65-4c15-a384-19938b320ae2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b6641421-9e65-4c15-a384-19938b320ae2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-076190916964697264902796", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b6641421-9e65-4c15-a384-19938b320ae2", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-076190916964697264902796", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b6641421-9e65-4c15-a384-19938b320ae2" ] + }, + "id" : "urn:uuid:a171cdd3-fbbe-479c-95ab-09526bf4c214" + } ] + }, { + "catenaXId" : "urn:uuid:3c723540-f1ea-42ff-8f2a-d0cbce069a33", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3c723540-f1ea-42ff-8f2a-d0cbce069a33" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-004065236701148620139442", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c723540-f1ea-42ff-8f2a-d0cbce069a33", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-004065236701148620139442", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3c723540-f1ea-42ff-8f2a-d0cbce069a33" ] + }, + "id" : "urn:uuid:bc9389a8-c8e3-4e1e-97ff-c2e42ab76b9b" + } ] + }, { + "catenaXId" : "urn:uuid:88d03b0d-bbff-48ce-913e-e425d29ed6ed", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:88d03b0d-bbff-48ce-913e-e425d29ed6ed" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-452879874731569528228922", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:88d03b0d-bbff-48ce-913e-e425d29ed6ed", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-452879874731569528228922", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:88d03b0d-bbff-48ce-913e-e425d29ed6ed" ] + }, + "id" : "urn:uuid:61dce68a-5a06-4aeb-ac94-65a6520b64ef" + } ] + }, { + "catenaXId" : "urn:uuid:e90ad517-06ea-4252-96bd-8863282e91c9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e90ad517-06ea-4252-96bd-8863282e91c9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-083254343428131127353819", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e90ad517-06ea-4252-96bd-8863282e91c9", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-083254343428131127353819", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e90ad517-06ea-4252-96bd-8863282e91c9" ] + }, + "id" : "urn:uuid:afce0852-3366-458b-b136-eb18303f875f" + } ] + }, { + "catenaXId" : "urn:uuid:d151ceb5-bcd9-4fd2-ba6f-559f718b2451", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d151ceb5-bcd9-4fd2-ba6f-559f718b2451" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-662308300469715177320520", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d151ceb5-bcd9-4fd2-ba6f-559f718b2451", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-662308300469715177320520", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d151ceb5-bcd9-4fd2-ba6f-559f718b2451" ] + }, + "id" : "urn:uuid:ea79c02b-9380-4d05-9073-e4dc077d59e5" + } ] + }, { + "catenaXId" : "urn:uuid:c576f762-533f-4a4c-abf6-ad8aa149cf15", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c576f762-533f-4a4c-abf6-ad8aa149cf15" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-707836545708156257529832", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c576f762-533f-4a4c-abf6-ad8aa149cf15", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-707836545708156257529832", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c576f762-533f-4a4c-abf6-ad8aa149cf15" ] + }, + "id" : "urn:uuid:dfa131c9-ba73-4b4e-868b-f032a44c2bc5" + } ] + }, { + "catenaXId" : "urn:uuid:14482a3d-57f8-4c86-8418-2ebab284c634", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:14482a3d-57f8-4c86-8418-2ebab284c634" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-145182474630452270866205", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:14482a3d-57f8-4c86-8418-2ebab284c634", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-145182474630452270866205", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:14482a3d-57f8-4c86-8418-2ebab284c634" ] + }, + "id" : "urn:uuid:bf6d27a5-bf56-450f-aac0-574190f590f9" + } ] + }, { + "catenaXId" : "urn:uuid:cfa317a9-28ce-4efb-a9e8-8882d5921e9e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cfa317a9-28ce-4efb-a9e8-8882d5921e9e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-322984983011037836589747", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cfa317a9-28ce-4efb-a9e8-8882d5921e9e", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-322984983011037836589747", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cfa317a9-28ce-4efb-a9e8-8882d5921e9e" ] + }, + "id" : "urn:uuid:90506e94-1899-4adf-b6a5-06c560d465b6" + } ] + }, { + "catenaXId" : "urn:uuid:c18a36e1-8edd-4895-b24c-4a3fd864eb3a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c18a36e1-8edd-4895-b24c-4a3fd864eb3a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-673368736753074739198079", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c18a36e1-8edd-4895-b24c-4a3fd864eb3a", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-673368736753074739198079", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c18a36e1-8edd-4895-b24c-4a3fd864eb3a" ] + }, + "id" : "urn:uuid:855533bf-9c89-4178-b7da-7d6fef8b8d75" + } ] + }, { + "catenaXId" : "urn:uuid:d8dc6e59-161d-4323-97ed-56302ea7a827", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d8dc6e59-161d-4323-97ed-56302ea7a827" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-545536245294756166969440", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d8dc6e59-161d-4323-97ed-56302ea7a827", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-545536245294756166969440", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d8dc6e59-161d-4323-97ed-56302ea7a827" ] + }, + "id" : "urn:uuid:6250e6c7-99d7-48c5-8fcd-19bdd78666dc" + } ] + }, { + "catenaXId" : "urn:uuid:9a6c557b-ba4c-4f44-b8d0-8c6b51ead200", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9a6c557b-ba4c-4f44-b8d0-8c6b51ead200" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-659564993613013470698061", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9a6c557b-ba4c-4f44-b8d0-8c6b51ead200", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-659564993613013470698061", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9a6c557b-ba4c-4f44-b8d0-8c6b51ead200" ] + }, + "id" : "urn:uuid:f58d9400-46d1-43bf-9aba-69116d3c6280" + } ] + }, { + "catenaXId" : "urn:uuid:8d73533f-997d-4776-aaa4-0713511ceef9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8d73533f-997d-4776-aaa4-0713511ceef9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-714932618962700333235532", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8d73533f-997d-4776-aaa4-0713511ceef9", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-714932618962700333235532", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8d73533f-997d-4776-aaa4-0713511ceef9" ] + }, + "id" : "urn:uuid:c6d1cdaa-33c2-465c-b453-719460dad1e5" + } ] + }, { + "catenaXId" : "urn:uuid:f145cf2e-7d3a-4362-a911-133ed0052601", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f145cf2e-7d3a-4362-a911-133ed0052601" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-285100721000977582677290", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f145cf2e-7d3a-4362-a911-133ed0052601", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-285100721000977582677290", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f145cf2e-7d3a-4362-a911-133ed0052601" ] + }, + "id" : "urn:uuid:493d8612-1fee-43d3-a1e0-8963a80fd0e2" + } ] + }, { + "catenaXId" : "urn:uuid:3da74474-1b9d-45b1-99d2-af79aa508b93", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3da74474-1b9d-45b1-99d2-af79aa508b93" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-688096137023676699723536", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3da74474-1b9d-45b1-99d2-af79aa508b93", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-688096137023676699723536", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3da74474-1b9d-45b1-99d2-af79aa508b93" ] + }, + "id" : "urn:uuid:81f1b747-444e-42f4-8dcc-9c6abbbef12e" + } ] + }, { + "catenaXId" : "urn:uuid:4b86ddec-ddb5-4927-a813-ca0c53f84981", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4b86ddec-ddb5-4927-a813-ca0c53f84981" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-193450752304130346999026", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b86ddec-ddb5-4927-a813-ca0c53f84981", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-193450752304130346999026", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4b86ddec-ddb5-4927-a813-ca0c53f84981" ] + }, + "id" : "urn:uuid:9a3bc12f-07d1-482b-9061-4df50698de5e" + } ] + }, { + "catenaXId" : "urn:uuid:4f84a861-83ae-415a-b7d0-5b5432a890a7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f84a861-83ae-415a-b7d0-5b5432a890a7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-581303953363738680066796", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f84a861-83ae-415a-b7d0-5b5432a890a7", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-581303953363738680066796", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4f84a861-83ae-415a-b7d0-5b5432a890a7" ] + }, + "id" : "urn:uuid:630533db-06ff-40d5-9673-9f46b9980cb0" + } ] + }, { + "catenaXId" : "urn:uuid:277a5602-5ca2-4e21-801c-330836fdcf06", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:277a5602-5ca2-4e21-801c-330836fdcf06" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-985141983616062926342438", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:277a5602-5ca2-4e21-801c-330836fdcf06", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-985141983616062926342438", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:277a5602-5ca2-4e21-801c-330836fdcf06" ] + }, + "id" : "urn:uuid:6afa106f-943d-4f64-8901-ee122d7ca35b" + } ] + }, { + "catenaXId" : "urn:uuid:54a952ce-4b3d-48d5-ba55-8c3a4595f476", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:54a952ce-4b3d-48d5-ba55-8c3a4595f476" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-344260691325590175069815", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:54a952ce-4b3d-48d5-ba55-8c3a4595f476", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-344260691325590175069815", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:54a952ce-4b3d-48d5-ba55-8c3a4595f476" ] + }, + "id" : "urn:uuid:2c58b316-a17a-4c1e-bb12-1eff7e6b2fcd" + } ] + }, { + "catenaXId" : "urn:uuid:15a5ac55-f21a-48ba-b893-6b2310fa6923", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:15a5ac55-f21a-48ba-b893-6b2310fa6923" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-926339494512888628273566", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:15a5ac55-f21a-48ba-b893-6b2310fa6923", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-926339494512888628273566", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:15a5ac55-f21a-48ba-b893-6b2310fa6923" ] + }, + "id" : "urn:uuid:6a4e1ef1-9dcd-4ccf-80ea-41a8096a697d" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", + "childItems" : [ { + "catenaXId" : "urn:uuid:a6be9b66-3bfc-4711-8cff-cd5054aeab62", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a4ed6355-8133-4416-b00a-9f3e70f10042", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-878531100273516593372828", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-878531100273516593372828", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-878531100273516593372828", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4" ] + }, + "id" : "urn:uuid:46649f9a-f683-491d-9f80-e1b614a5a8c3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 72, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 51, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 87, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a6be9b66-3bfc-4711-8cff-cd5054aeab62", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a6be9b66-3bfc-4711-8cff-cd5054aeab62" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "13042L4-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-227890043765783890752870", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a6be9b66-3bfc-4711-8cff-cd5054aeab62", + "partTypeInformation" : { + "manufacturerPartId" : "13042L4-59", + "customerPartId" : "13042L4-59", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 68, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 11, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c", + "childItems" : [ { + "catenaXId" : "urn:uuid:8be10fcf-e5e6-459e-a78f-4bf4f65257c1", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "66467N6-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-449605158042651583390208", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c", + "partTypeInformation" : { + "manufacturerPartId" : "66467N6-16", + "customerPartId" : "66467N6-16", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-449605158042651583390208", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "66467N6-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c" ] + }, + "id" : "urn:uuid:af3cae1c-0115-410c-b520-f340a1bb5b8b" + } ] + }, { + "catenaXId" : "urn:uuid:8be10fcf-e5e6-459e-a78f-4bf4f65257c1", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8be10fcf-e5e6-459e-a78f-4bf4f65257c1" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "60338J2-89", + "key" : "manufacturerPartId" + }, { + "value" : "NO-321621439339841438361390", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8be10fcf-e5e6-459e-a78f-4bf4f65257c1", + "partTypeInformation" : { + "manufacturerPartId" : "60338J2-89", + "customerPartId" : "60338J2-89", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 72, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 64, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a4ed6355-8133-4416-b00a-9f3e70f10042", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:a4ed6355-8133-4416-b00a-9f3e70f10042", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a4ed6355-8133-4416-b00a-9f3e70f10042" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "44272D0-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-820423593985840820063408", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a4ed6355-8133-4416-b00a-9f3e70f10042", + "partTypeInformation" : { + "manufacturerPartId" : "44272D0-74", + "customerPartId" : "44272D0-74", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:ebf7d657-e14b-4bc2-a5d5-da4e8d00bac6", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:381918d4-bf1c-40af-b386-509e16a858b1", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "66936M4-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-272208000137533477412562", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4", + "partTypeInformation" : { + "manufacturerPartId" : "66936M4-08", + "customerPartId" : "66936M4-08", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-272208000137533477412562", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "66936M4-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4" ] + }, + "id" : "urn:uuid:368c5bbd-c866-4c7a-8052-100aedd2e8e7" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 45, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:ebf7d657-e14b-4bc2-a5d5-da4e8d00bac6", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebf7d657-e14b-4bc2-a5d5-da4e8d00bac6" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "11524X7-34", + "key" : "manufacturerPartId" + }, { + "value" : "NO-084702137296964564977632", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebf7d657-e14b-4bc2-a5d5-da4e8d00bac6", + "partTypeInformation" : { + "manufacturerPartId" : "11524X7-34", + "customerPartId" : "11524X7-34", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 41, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 50, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd", + "childItems" : [ { + "catenaXId" : "urn:uuid:c51eba81-e33e-4fb0-b9dc-89b0f8e011cf", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "74454W6-67", + "key" : "manufacturerPartId" + }, { + "value" : "NO-121543913834055695103824", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd", + "partTypeInformation" : { + "manufacturerPartId" : "74454W6-67", + "customerPartId" : "74454W6-67", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-121543913834055695103824", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "74454W6-67", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd" ] + }, + "id" : "urn:uuid:362a8dae-2df2-4a23-bcb0-ec13b4ece7c6" + } ] + }, { + "catenaXId" : "urn:uuid:c51eba81-e33e-4fb0-b9dc-89b0f8e011cf", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c51eba81-e33e-4fb0-b9dc-89b0f8e011cf" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "20891Y0-33", + "key" : "manufacturerPartId" + }, { + "value" : "NO-073776760669857032738752", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c51eba81-e33e-4fb0-b9dc-89b0f8e011cf", + "partTypeInformation" : { + "manufacturerPartId" : "20891Y0-33", + "customerPartId" : "20891Y0-33", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 31, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 71, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:381918d4-bf1c-40af-b386-509e16a858b1", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:381918d4-bf1c-40af-b386-509e16a858b1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "19855N7-93", + "key" : "manufacturerPartId" + }, { + "value" : "NO-767646422576362356397673", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:381918d4-bf1c-40af-b386-509e16a858b1", + "partTypeInformation" : { + "manufacturerPartId" : "19855N7-93", + "customerPartId" : "19855N7-93", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-767646422576362356397673", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19855N7-93", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:381918d4-bf1c-40af-b386-509e16a858b1" ] + }, + "id" : "urn:uuid:929d8f26-8821-44bd-90a0-4ad7ad4a6963" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 52, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 11, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "childItems" : [ { + "catenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-862483507137037048404844", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-862483507137037048404844", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9" ] + }, + "id" : "urn:uuid:a3dba7b0-dc94-482d-83a0-14045399c38a" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 56, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 11, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 49, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-331278764102920561145644", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-331278764102920561145644", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, + "id" : "urn:uuid:bb7220ed-190f-444b-8c5a-b8052de0f040" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 22, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 17, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 59, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-009096709981846922493617", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-009096709981846922493617", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7" ] + }, + "id" : "urn:uuid:9e626876-78b4-47f1-990e-9f4fcaa454c0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-24T20:39:47.906Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T00:55:04.906Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-128045207725662061291320", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-128045207725662061291320", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60" ] + }, + "id" : "urn:uuid:ccb4d1a8-0131-4d93-a9bb-05ab1c828869" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-12-05T19:11:32.917Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T09:31:55.917Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-884230197400106402785679", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-884230197400106402785679", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c" ] + }, + "id" : "urn:uuid:d9a96bb9-3a1c-49af-848b-04b861d85f66" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-28T05:29:15.927Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T12:26:56.927Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-524152225855032754293238", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-524152225855032754293238", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43" ] + }, + "id" : "urn:uuid:e959a783-3e9f-4124-a723-2d9000a17acd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-12T10:54:01.937Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T03:06:01.937Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-580136671424071694766285", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-580136671424071694766285", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4" ] + }, + "id" : "urn:uuid:43a17ecd-e6e5-4cc4-b3c5-596cfa47e345" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-16T11:11:06.947Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T01:51:25.947Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-089755607943328817453396", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-089755607943328817453396", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d" ] + }, + "id" : "urn:uuid:da430d1c-f3e4-4d57-adcc-eb42b81065c7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-07-11T13:10:28.957Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T08:33:47.958Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-202109095802357737788227", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-202109095802357737788227", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835" ] + }, + "id" : "urn:uuid:e0b55281-6ade-4b1f-88b0-28bf7002e64b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-29T06:13:35.968Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T16:58:37.968Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-201014295598630725930225", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-201014295598630725930225", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8" ] + }, + "id" : "urn:uuid:679783fd-2013-4010-8620-c8f21e499690" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-12-30T16:47:04.979Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T17:28:35.979Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-775516610960924482175098", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-775516610960924482175098", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544" ] + }, + "id" : "urn:uuid:a9f41d53-c3cd-43b5-8b54-4494b32dac7a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-05T02:59:53.990Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T12:39:47.990Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-873169423405906464026387", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-873169423405906464026387", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a" ] + }, + "id" : "urn:uuid:e72e0887-ec67-460e-bc05-0beb60d2311e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-13T11:08:42.001Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T05:08:30.001Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-136220714833505322790484", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-136220714833505322790484", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, + "id" : "urn:uuid:4e9238f9-04e4-4d2e-93e1-d50d8c25b64e" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 23, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 74, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 15, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-628312586778575213971706", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-628312586778575213971706", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99" ] + }, + "id" : "urn:uuid:811e2d13-62e0-45d2-8efe-0641e08ac49f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-12T09:47:30.025Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T03:36:04.026Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-715803928084792472438799", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-715803928084792472438799", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60" ] + }, + "id" : "urn:uuid:bb23c466-44d4-48b5-8a8d-a3af497122cb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-15T17:30:51.036Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T14:45:24.036Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-759514916064842050652374", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-759514916064842050652374", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc" ] + }, + "id" : "urn:uuid:af46cb82-230c-41ba-a462-428f1002c892" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-09T09:24:10.046Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T00:43:14.047Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-592072484531544337186980", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-592072484531544337186980", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6" ] + }, + "id" : "urn:uuid:90f55ceb-6b42-4db3-bf87-9f03eb24c523" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-04T17:33:36.058Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T06:31:47.058Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-614419411974145287364114", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-614419411974145287364114", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925" ] + }, + "id" : "urn:uuid:cd0d4702-f78a-4674-8213-ecca4cb26944" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-14T01:34:06.069Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T18:32:16.069Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-598963096478814305856079", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-598963096478814305856079", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d" ] + }, + "id" : "urn:uuid:413aded8-f2a4-476a-bb45-b99dcfcd5bba" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-30T18:26:21.081Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T13:16:50.081Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-393049909248598826552660", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-393049909248598826552660", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d" ] + }, + "id" : "urn:uuid:fa5de311-6dff-4266-8cfc-85df80093dba" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-08T16:54:52.091Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T07:24:27.091Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-122932288346590227335640", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-122932288346590227335640", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f" ] + }, + "id" : "urn:uuid:effb2ddf-2ab8-4a83-aa0f-69f0986912fc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-04-18T01:23:55.102Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T02:00:34.102Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-402696937791782212515598", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-402696937791782212515598", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8" ] + }, + "id" : "urn:uuid:f5eae527-6c1a-4785-ba9a-75f9b9ca8a40" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-07-16T20:48:55.111Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T02:07:55.111Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-508739918893358434363712", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-508739918893358434363712", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23" ] + }, + "id" : "urn:uuid:d74f57c6-1c55-4f05-b46b-aa912c1e3096" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-02-03T07:53:11.120Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T06:30:14.120Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-916330042584480817840425", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-916330042584480817840425", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, + "id" : "urn:uuid:4d059e5b-d604-4939-834a-7b5579911617" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 71, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 84, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 54, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-705435784799642232901385", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-705435784799642232901385", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4" ] + }, + "id" : "urn:uuid:73c40329-1d74-4a17-8f87-65a55ef1b50e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-23T00:40:16.139Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T08:29:18.139Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-692337416289368519838499", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-692337416289368519838499", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94" ] + }, + "id" : "urn:uuid:ce5d627b-4208-42af-9f0b-d330596c41f9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-08-23T03:31:16.149Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T12:34:10.149Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-165308144864373439109725", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-165308144864373439109725", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42" ] + }, + "id" : "urn:uuid:65417aa2-c7b4-4be4-a9ae-f15b452fb348" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-05-11T22:30:00.158Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T17:57:28.158Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-575032117937748411713830", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-575032117937748411713830", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5" ] + }, + "id" : "urn:uuid:d58ee7ba-8ff6-4900-be13-ddfaa9a626e8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-30T03:45:44.167Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T00:56:57.167Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-514073912690861998816102", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-514073912690861998816102", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe" ] + }, + "id" : "urn:uuid:f320912f-0b67-42cd-8a8d-3943e61c7e0e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-18T15:12:35.176Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T23:05:24.176Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-292901885985578708723255", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-292901885985578708723255", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9" ] + }, + "id" : "urn:uuid:5a5b1f6b-a28e-43de-a1b5-b6e2b3bd9cf8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-17T21:42:21.185Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T21:35:12.185Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-782276370905688565385353", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-782276370905688565385353", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b" ] + }, + "id" : "urn:uuid:39fa4cb7-97a6-4960-b3ba-91d37c09c311" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-18T20:46:14.194Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T03:51:01.194Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-585282822409879682631618", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-585282822409879682631618", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc" ] + }, + "id" : "urn:uuid:51ec7d80-91b4-42b1-ac9b-ccbcf565aeb8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-15T15:28:12.204Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T08:47:54.204Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-793471806495774805215769", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-793471806495774805215769", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79" ] + }, + "id" : "urn:uuid:ab2fde3c-8cb0-40c3-8122-54910c07b095" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-04T12:35:40.215Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T14:38:07.215Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-650348945956708742452017", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-650348945956708742452017", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17" ] + }, + "id" : "urn:uuid:d0f09e0a-d133-44ff-bde9-ed5ad5509cfc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-11T14:37:11.224Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T13:17:47.224Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-379447880404477685897325", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-379447880404477685897325", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, + "id" : "urn:uuid:5205e005-5a3d-4c4f-b4e2-13deaae414d6" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 57, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 29, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 39, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-655888647557769085083601", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-655888647557769085083601", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e" ] + }, + "id" : "urn:uuid:b16d0264-9b85-41f8-b967-bd57d4af832a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-03T05:31:55.242Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T06:05:57.242Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-238998282933615761316057", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-238998282933615761316057", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b" ] + }, + "id" : "urn:uuid:5bbfd3da-9bf6-4d0f-9ef7-ab49c5298696" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-10T02:14:08.251Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T20:09:15.251Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-781198946190260004338150", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-781198946190260004338150", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8" ] + }, + "id" : "urn:uuid:b6d655ff-2f55-47f2-a6e2-982bdc7923e4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-06T12:53:38.260Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T11:39:16.260Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-240579652686423666719452", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-240579652686423666719452", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43" ] + }, + "id" : "urn:uuid:39fa05a9-0f37-4d64-95ab-8fb48e106122" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-27T14:28:21.269Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T21:20:18.269Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-077867673242782322112582", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-077867673242782322112582", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63" ] + }, + "id" : "urn:uuid:0ef133d3-b31e-4e4c-a578-0167c86f2fef" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-29T20:57:52.278Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T21:43:18.278Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-239978237741529068809375", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-239978237741529068809375", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac" ] + }, + "id" : "urn:uuid:b8e3581b-8690-4860-b7f0-150e5d6182cc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-08T20:12:12.287Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T15:18:27.287Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-748927833960673358808616", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-748927833960673358808616", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9" ] + }, + "id" : "urn:uuid:91d807a4-791c-4062-bb50-1fffc2163195" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-27T07:30:14.301Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T18:14:14.301Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-880435747265887103079100", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-880435747265887103079100", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817" ] + }, + "id" : "urn:uuid:d5814bcb-3fe8-4e87-a235-cb6dcef24b08" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-19T14:10:57.311Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T16:33:34.311Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-596233524746439389551636", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-596233524746439389551636", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4" ] + }, + "id" : "urn:uuid:c20b3568-ac27-4a57-bdf7-d6b3d3d5aea5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-02T10:00:48.320Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T00:31:46.320Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-161780267305204401574245", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-161780267305204401574245", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba" ] + }, + "id" : "urn:uuid:e16b9ef7-7b17-4f0f-ae72-8c80ee1ee1c9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-14T11:01:49.329Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T08:34:16.329Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-081191861217725939751240", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-081191861217725939751240", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, + "id" : "urn:uuid:f25d52d4-0f37-4155-b61a-436de13e86d0" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 22, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 39, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 83, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-335728319047823204861192", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-335728319047823204861192", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d" ] + }, + "id" : "urn:uuid:1c29ee4b-fe15-4795-bb56-c1556f57c78c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-05-16T18:26:07.350Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T19:47:30.350Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-847236974914292109922208", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-847236974914292109922208", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8" ] + }, + "id" : "urn:uuid:23278753-167c-4e65-918c-8d58a822866a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-05T14:37:15.359Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T21:15:44.359Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-053627466426358203878829", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-053627466426358203878829", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8" ] + }, + "id" : "urn:uuid:138ce7ef-8d59-4686-9a94-c9d8b5c8d4cd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-10T04:58:05.367Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T14:24:07.368Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-590589863746638200515120", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-590589863746638200515120", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a" ] + }, + "id" : "urn:uuid:76bca403-aa32-4361-a35d-7310bbff0476" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-09T21:54:16.376Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T01:59:11.376Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-481324808783599482514135", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-481324808783599482514135", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d" ] + }, + "id" : "urn:uuid:edcc16c6-2a5a-40e6-8a2f-5fba47164e53" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-04-17T17:27:52.385Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T07:51:58.385Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-564282686653405628577890", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-564282686653405628577890", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a" ] + }, + "id" : "urn:uuid:11cbf348-a638-4e08-9e44-07f41b033d57" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-04-29T00:55:46.394Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T21:15:23.394Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-727093927207282424149465", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-727093927207282424149465", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783" ] + }, + "id" : "urn:uuid:0447617f-73c6-4646-8176-0f1372cf3394" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-17T14:54:18.402Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T05:33:36.402Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-918713333395470367217850", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-918713333395470367217850", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2" ] + }, + "id" : "urn:uuid:ad4ce1e0-526b-45cd-a4fa-1284276f8d5a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-05T22:25:26.411Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T04:11:33.411Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-168034809690748822024523", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-168034809690748822024523", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715" ] + }, + "id" : "urn:uuid:12a9cdf3-5306-482b-8f3f-45f7bdbbf748" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-21T07:26:53.420Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T16:19:22.420Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-990604252424489818766263", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-990604252424489818766263", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d" ] + }, + "id" : "urn:uuid:3a2fb69e-af1d-4a3d-8c1c-9e781c8f85a3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-26T10:21:52.428Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T03:49:56.428Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-805842724247652557247182", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-805842724247652557247182", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, + "id" : "urn:uuid:4bc5beb9-518d-4c5b-bfd2-9d074065b4ed" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 56, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 89, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 75, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-931423063251103383481820", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-931423063251103383481820", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00" ] + }, + "id" : "urn:uuid:5f06cb11-e655-416b-bf7e-41c6bf9353fd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-24T10:33:57.446Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T21:13:34.446Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-618217604153320422507945", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-618217604153320422507945", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5" ] + }, + "id" : "urn:uuid:43c647cb-4921-4741-ac41-f6ab3d391ffe" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-11T13:44:21.455Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T23:49:26.455Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-790987578110455033975506", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-790987578110455033975506", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38" ] + }, + "id" : "urn:uuid:52d4ae84-415e-4bf3-8a81-4fc0dd4e8ea8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-21T20:22:33.464Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T11:33:41.464Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-300891091726866697065561", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-300891091726866697065561", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a" ] + }, + "id" : "urn:uuid:ab68112e-3fd8-4640-9761-77a7a96f3896" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-19T13:15:22.473Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T00:35:40.473Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-425746385125843413104975", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-425746385125843413104975", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0" ] + }, + "id" : "urn:uuid:dfb13c04-1922-4f17-be8d-0a78cec9ded7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-16T14:53:10.482Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T15:05:38.482Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-760492981761239995744514", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-760492981761239995744514", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093" ] + }, + "id" : "urn:uuid:8960896a-86ca-45ea-9e3b-00d359f34fa3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-16T11:34:22.491Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T20:27:54.491Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-253190476783401103702235", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-253190476783401103702235", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb" ] + }, + "id" : "urn:uuid:88c3e1c2-fc1c-4307-b187-21cb75ddfe9b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-26T12:40:05.500Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T16:32:42.500Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-464626662405385087784110", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-464626662405385087784110", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18" ] + }, + "id" : "urn:uuid:6278c7d3-2e74-49f0-b218-c4d853edbca4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-03T10:04:35.509Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T05:58:22.509Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-594055597768255138980022", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-594055597768255138980022", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6" ] + }, + "id" : "urn:uuid:5776701d-f962-4630-9017-a0c65b19d6df" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-10T14:19:11.518Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T23:30:19.518Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-646957298750110846309895", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-646957298750110846309895", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b" ] + }, + "id" : "urn:uuid:aa6e6201-106b-4f1d-9e08-8b00d1076ece" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-19T21:45:06.527Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T15:33:36.527Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "engine" : { + "size" : 2998, + "power" : 152 + }, + "emptyWeight" : 1.79, + "fuel" : "hybrid petrol/electric", + "vehicleModel" : "Vehicle Hybrid", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "childItems" : [ { + "catenaXId" : "urn:uuid:3997bf97-501c-4c43-a3af-d8f97a55131d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:97ebcd87-224c-41ff-9ecc-05d8c483fb58", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8659e9a9-c4e4-4a07-9653-923a5707b70c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2e0cd53d-8fd4-48f3-8a13-e14502948faa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:26ece0c9-e57e-4238-80ae-c2d57292ae19", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cc496c32-d6a5-466f-9187-3a9a0d6d96f9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7d962e85-0fd4-4e9f-8a81-f9830611629c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c2b01216-d298-4987-929a-b1531ae92aa7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a34feb51-94ff-4dc8-b077-12af9cf4b36d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fff8d480-68f6-453b-991a-34c9511b6537", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cd0c5fa4-c9a2-437a-995a-693827d6d0c2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fcb45b3f-64a0-4256-8972-e08c68dac265", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:921ea907-cfe1-4a79-a392-f8b19c1e19ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cdccb71d-5746-48a0-82e6-aa22d452d282", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e46d0ccc-585f-4724-9562-a0f1f1c3b292", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a3f0fc7c-0660-411a-8a80-db2365af2fd3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:065328a3-9abc-4383-9619-f66210a086e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a2e96ed2-8a2f-489d-8eaa-900d6279dcd0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8bc7bc7e-d929-4ba0-bc6b-4ed0ad70750b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:306091f6-52d2-4b95-b28f-bf69e67f049f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4c836cce-1810-4300-be02-917a553acfaa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f40f1b3b-47b1-4c9e-a198-65ba1da9b6e4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bcd3db07-55bd-4da1-a5f5-d18aa43df777", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d78aa54d-14bc-40d2-8edb-883fb8a3b7b4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c46044f2-68b2-4ab1-a61a-70a46572237c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:88d3c6c5-6007-4938-83d7-8ee4138d84ce", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ebab9e2b-efb6-4867-ac1b-d977b1333db3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7d4fd11-8386-48d1-9898-23450b20a2bf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1be32f19-97a3-4833-af9d-23b1afae3a9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:69b3a1a8-508b-46a7-b75c-132d044f840d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "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" + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "ZV-05", + "key" : "manufacturerPartId" + }, { + "value" : "OMAZONSYUJCGDWRGH", + "key" : "partInstanceId" + }, { + "value" : "OMAZONSYUJCGDWRGH", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2020-04-19T14:40:10.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "partTypeInformation" : { + "manufacturerPartId" : "ZV-05", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Hybrid" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMAZONSYUJCGDWRGH", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "ZV-05", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_hybrid.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Hybrid" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, + "id" : "urn:uuid:978ec803-5219-41e1-af8b-a8e57076730c" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 66, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 10, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 57, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 22, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 87, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 16, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 44, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 19, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 43, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 85, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:3997bf97-501c-4c43-a3af-d8f97a55131d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3997bf97-501c-4c43-a3af-d8f97a55131d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-018672168229629749542099", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3997bf97-501c-4c43-a3af-d8f97a55131d", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-018672168229629749542099", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3997bf97-501c-4c43-a3af-d8f97a55131d" ] + }, + "id" : "urn:uuid:78ad47b4-4f6b-4b72-966f-fba1671ed001" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:97ebcd87-224c-41ff-9ecc-05d8c483fb58", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:97ebcd87-224c-41ff-9ecc-05d8c483fb58" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-052452751619535177116119", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:97ebcd87-224c-41ff-9ecc-05d8c483fb58", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-052452751619535177116119", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:97ebcd87-224c-41ff-9ecc-05d8c483fb58" ] + }, + "id" : "urn:uuid:15905b11-093c-4a9d-bb7a-68386258a156" + } ] + }, { + "catenaXId" : "urn:uuid:8659e9a9-c4e4-4a07-9653-923a5707b70c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8659e9a9-c4e4-4a07-9653-923a5707b70c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-946054560532031104940976", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8659e9a9-c4e4-4a07-9653-923a5707b70c", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-946054560532031104940976", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8659e9a9-c4e4-4a07-9653-923a5707b70c" ] + }, + "id" : "urn:uuid:dcb9ebb0-fdea-4e96-8717-4fc925341d48" + } ] + }, { + "catenaXId" : "urn:uuid:2e0cd53d-8fd4-48f3-8a13-e14502948faa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2e0cd53d-8fd4-48f3-8a13-e14502948faa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-574849211215481653954905", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2e0cd53d-8fd4-48f3-8a13-e14502948faa", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-574849211215481653954905", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2e0cd53d-8fd4-48f3-8a13-e14502948faa" ] + }, + "id" : "urn:uuid:e395f951-66fb-4855-942d-1b8b6f1ddbe6" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8", + "childItems" : [ { + "catenaXId" : "urn:uuid:4dacd840-bccb-45fa-be79-c6ade46fa65a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-333072434760833945180658", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-333072434760833945180658", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8" ] + }, + "id" : "urn:uuid:0c4ff489-4e34-4ddf-93ca-bd6bfe23e3e4" + } ] + }, { + "catenaXId" : "urn:uuid:4dacd840-bccb-45fa-be79-c6ade46fa65a", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4dacd840-bccb-45fa-be79-c6ade46fa65a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-165361062867300803827740", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4dacd840-bccb-45fa-be79-c6ade46fa65a", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-165361062867300803827740", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4dacd840-bccb-45fa-be79-c6ade46fa65a" ] + }, + "id" : "urn:uuid:b8c960c3-f337-42ce-8b97-1ededff5ce75" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68", + "childItems" : [ { + "catenaXId" : "urn:uuid:331c54d4-7989-405e-839a-144bcbd78b19", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-680454194425102210629456", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-680454194425102210629456", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68" ] + }, + "id" : "urn:uuid:b841b793-88e4-48fd-857e-536ca6a63a5d" + } ] + }, { + "catenaXId" : "urn:uuid:331c54d4-7989-405e-839a-144bcbd78b19", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:331c54d4-7989-405e-839a-144bcbd78b19" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-732101923884892300371595", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:331c54d4-7989-405e-839a-144bcbd78b19", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-732101923884892300371595", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:331c54d4-7989-405e-839a-144bcbd78b19" ] + }, + "id" : "urn:uuid:ef99f7ad-bb19-486a-b759-40a87994ab68" + } ] + }, { + "catenaXId" : "urn:uuid:26ece0c9-e57e-4238-80ae-c2d57292ae19", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:26ece0c9-e57e-4238-80ae-c2d57292ae19" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-829265030466024938807120", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:26ece0c9-e57e-4238-80ae-c2d57292ae19", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-829265030466024938807120", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:26ece0c9-e57e-4238-80ae-c2d57292ae19" ] + }, + "id" : "urn:uuid:49cc3bed-0008-4b10-8b62-97e82c7008c4" + } ] + }, { + "catenaXId" : "urn:uuid:cc496c32-d6a5-466f-9187-3a9a0d6d96f9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cc496c32-d6a5-466f-9187-3a9a0d6d96f9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-062768545523692570795072", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cc496c32-d6a5-466f-9187-3a9a0d6d96f9", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-062768545523692570795072", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cc496c32-d6a5-466f-9187-3a9a0d6d96f9" ] + }, + "id" : "urn:uuid:8e427f7c-0fc9-43cb-9225-3430a572bcfa" + } ] + }, { + "catenaXId" : "urn:uuid:7d962e85-0fd4-4e9f-8a81-f9830611629c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7d962e85-0fd4-4e9f-8a81-f9830611629c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-359406768635922181026979", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7d962e85-0fd4-4e9f-8a81-f9830611629c", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-359406768635922181026979", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7d962e85-0fd4-4e9f-8a81-f9830611629c" ] + }, + "id" : "urn:uuid:db2ec743-ef2c-4ac7-8b70-8e428529ad6f" + } ] + }, { + "catenaXId" : "urn:uuid:c2b01216-d298-4987-929a-b1531ae92aa7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c2b01216-d298-4987-929a-b1531ae92aa7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-302419016055086678197190", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c2b01216-d298-4987-929a-b1531ae92aa7", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-302419016055086678197190", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c2b01216-d298-4987-929a-b1531ae92aa7" ] + }, + "id" : "urn:uuid:639ad91a-5b2d-4dbe-9119-ff87a047f0f1" + } ] + }, { + "catenaXId" : "urn:uuid:a34feb51-94ff-4dc8-b077-12af9cf4b36d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a34feb51-94ff-4dc8-b077-12af9cf4b36d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-935006158257139628624345", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a34feb51-94ff-4dc8-b077-12af9cf4b36d", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-935006158257139628624345", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a34feb51-94ff-4dc8-b077-12af9cf4b36d" ] + }, + "id" : "urn:uuid:733b1c03-1e4b-451c-864e-d332aa36ceb8" + } ] + }, { + "catenaXId" : "urn:uuid:fff8d480-68f6-453b-991a-34c9511b6537", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fff8d480-68f6-453b-991a-34c9511b6537" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-212979329047561315152232", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fff8d480-68f6-453b-991a-34c9511b6537", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-212979329047561315152232", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fff8d480-68f6-453b-991a-34c9511b6537" ] + }, + "id" : "urn:uuid:f0ca2074-f8e9-4ac5-8bb6-373e5ffccee9" + } ] + }, { + "catenaXId" : "urn:uuid:cd0c5fa4-c9a2-437a-995a-693827d6d0c2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cd0c5fa4-c9a2-437a-995a-693827d6d0c2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-295256329137768569483656", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd0c5fa4-c9a2-437a-995a-693827d6d0c2", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-295256329137768569483656", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cd0c5fa4-c9a2-437a-995a-693827d6d0c2" ] + }, + "id" : "urn:uuid:1288e850-ea5a-412b-9d31-f41e86c06bcc" + } ] + }, { + "catenaXId" : "urn:uuid:fcb45b3f-64a0-4256-8972-e08c68dac265", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fcb45b3f-64a0-4256-8972-e08c68dac265" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-689652015678215358732109", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fcb45b3f-64a0-4256-8972-e08c68dac265", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-689652015678215358732109", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fcb45b3f-64a0-4256-8972-e08c68dac265" ] + }, + "id" : "urn:uuid:4198f4c0-2452-47d1-9f52-2b5241d7cf5b" + } ] + }, { + "catenaXId" : "urn:uuid:921ea907-cfe1-4a79-a392-f8b19c1e19ac", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:921ea907-cfe1-4a79-a392-f8b19c1e19ac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-977451563115794570486470", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:921ea907-cfe1-4a79-a392-f8b19c1e19ac", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-977451563115794570486470", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:921ea907-cfe1-4a79-a392-f8b19c1e19ac" ] + }, + "id" : "urn:uuid:809dcb90-62a3-4f4b-8826-ae621b318a56" + } ] + }, { + "catenaXId" : "urn:uuid:cdccb71d-5746-48a0-82e6-aa22d452d282", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cdccb71d-5746-48a0-82e6-aa22d452d282" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-522140782834196549922009", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cdccb71d-5746-48a0-82e6-aa22d452d282", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-522140782834196549922009", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cdccb71d-5746-48a0-82e6-aa22d452d282" ] + }, + "id" : "urn:uuid:107a9bec-ab2b-4c4d-9047-414c2e6424f7" + } ] + }, { + "catenaXId" : "urn:uuid:e46d0ccc-585f-4724-9562-a0f1f1c3b292", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e46d0ccc-585f-4724-9562-a0f1f1c3b292" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-929127137357584827544254", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e46d0ccc-585f-4724-9562-a0f1f1c3b292", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-929127137357584827544254", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e46d0ccc-585f-4724-9562-a0f1f1c3b292" ] + }, + "id" : "urn:uuid:4c20ac4c-bdb1-43d2-82ca-98ae6dd2edad" + } ] + }, { + "catenaXId" : "urn:uuid:a3f0fc7c-0660-411a-8a80-db2365af2fd3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a3f0fc7c-0660-411a-8a80-db2365af2fd3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-452247057159406518638622", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a3f0fc7c-0660-411a-8a80-db2365af2fd3", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-452247057159406518638622", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a3f0fc7c-0660-411a-8a80-db2365af2fd3" ] + }, + "id" : "urn:uuid:b56f1bfc-e4ad-40f3-ac9c-6cc1f80f52fc" + } ] + }, { + "catenaXId" : "urn:uuid:065328a3-9abc-4383-9619-f66210a086e8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:065328a3-9abc-4383-9619-f66210a086e8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-576900054272048591494904", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:065328a3-9abc-4383-9619-f66210a086e8", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-576900054272048591494904", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:065328a3-9abc-4383-9619-f66210a086e8" ] + }, + "id" : "urn:uuid:7c9ec53e-b681-478e-b8eb-5b5458c137eb" + } ] + }, { + "catenaXId" : "urn:uuid:a2e96ed2-8a2f-489d-8eaa-900d6279dcd0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a2e96ed2-8a2f-489d-8eaa-900d6279dcd0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-770177179742877893229404", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a2e96ed2-8a2f-489d-8eaa-900d6279dcd0", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-770177179742877893229404", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a2e96ed2-8a2f-489d-8eaa-900d6279dcd0" ] + }, + "id" : "urn:uuid:44f51bdc-dd9e-44d3-9e23-d7d1ec5922de" + } ] + }, { + "catenaXId" : "urn:uuid:8bc7bc7e-d929-4ba0-bc6b-4ed0ad70750b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8bc7bc7e-d929-4ba0-bc6b-4ed0ad70750b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-710634927986865748691211", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8bc7bc7e-d929-4ba0-bc6b-4ed0ad70750b", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-710634927986865748691211", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8bc7bc7e-d929-4ba0-bc6b-4ed0ad70750b" ] + }, + "id" : "urn:uuid:c494286f-7ece-447d-be12-463359eee506" + } ] + }, { + "catenaXId" : "urn:uuid:306091f6-52d2-4b95-b28f-bf69e67f049f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:306091f6-52d2-4b95-b28f-bf69e67f049f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-053928261024942055612956", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:306091f6-52d2-4b95-b28f-bf69e67f049f", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-053928261024942055612956", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:306091f6-52d2-4b95-b28f-bf69e67f049f" ] + }, + "id" : "urn:uuid:da264575-3f92-4f63-9b62-68b952f1ace2" + } ] + }, { + "catenaXId" : "urn:uuid:4c836cce-1810-4300-be02-917a553acfaa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4c836cce-1810-4300-be02-917a553acfaa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-929245411476700733933906", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4c836cce-1810-4300-be02-917a553acfaa", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-929245411476700733933906", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4c836cce-1810-4300-be02-917a553acfaa" ] + }, + "id" : "urn:uuid:60d5dcac-5d2a-4cd7-896c-fb29442d24c7" + } ] + }, { + "catenaXId" : "urn:uuid:f40f1b3b-47b1-4c9e-a198-65ba1da9b6e4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f40f1b3b-47b1-4c9e-a198-65ba1da9b6e4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-144649603216466689723553", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f40f1b3b-47b1-4c9e-a198-65ba1da9b6e4", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-144649603216466689723553", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f40f1b3b-47b1-4c9e-a198-65ba1da9b6e4" ] + }, + "id" : "urn:uuid:3d5c8dc1-989f-493c-b0bb-31d70c8ec3a9" + } ] + }, { + "catenaXId" : "urn:uuid:bcd3db07-55bd-4da1-a5f5-d18aa43df777", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bcd3db07-55bd-4da1-a5f5-d18aa43df777" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-993151947576368941814526", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bcd3db07-55bd-4da1-a5f5-d18aa43df777", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-993151947576368941814526", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bcd3db07-55bd-4da1-a5f5-d18aa43df777" ] + }, + "id" : "urn:uuid:f5ca7ee9-c4aa-474c-83bd-dbc7c3d6aff9" + } ] + }, { + "catenaXId" : "urn:uuid:d78aa54d-14bc-40d2-8edb-883fb8a3b7b4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d78aa54d-14bc-40d2-8edb-883fb8a3b7b4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-978789319570215393016850", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d78aa54d-14bc-40d2-8edb-883fb8a3b7b4", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-978789319570215393016850", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d78aa54d-14bc-40d2-8edb-883fb8a3b7b4" ] + }, + "id" : "urn:uuid:b5928b4e-d45e-4bf6-a58f-8da661d62cb4" + } ] + }, { + "catenaXId" : "urn:uuid:c46044f2-68b2-4ab1-a61a-70a46572237c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c46044f2-68b2-4ab1-a61a-70a46572237c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-421999785102756713248337", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c46044f2-68b2-4ab1-a61a-70a46572237c", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-421999785102756713248337", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c46044f2-68b2-4ab1-a61a-70a46572237c" ] + }, + "id" : "urn:uuid:d188f540-93a7-45b9-9cd0-8403d049f545" + } ] + }, { + "catenaXId" : "urn:uuid:88d3c6c5-6007-4938-83d7-8ee4138d84ce", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:88d3c6c5-6007-4938-83d7-8ee4138d84ce" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-063234304616167094940301", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:88d3c6c5-6007-4938-83d7-8ee4138d84ce", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-063234304616167094940301", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:88d3c6c5-6007-4938-83d7-8ee4138d84ce" ] + }, + "id" : "urn:uuid:e159ddf3-0324-47ae-95f5-055ee5a21e43" + } ] + }, { + "catenaXId" : "urn:uuid:ebab9e2b-efb6-4867-ac1b-d977b1333db3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebab9e2b-efb6-4867-ac1b-d977b1333db3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-122702502598449475060781", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebab9e2b-efb6-4867-ac1b-d977b1333db3", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-122702502598449475060781", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ebab9e2b-efb6-4867-ac1b-d977b1333db3" ] + }, + "id" : "urn:uuid:895c4022-196f-4dbe-a073-640eef844068" + } ] + }, { + "catenaXId" : "urn:uuid:c7d4fd11-8386-48d1-9898-23450b20a2bf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c7d4fd11-8386-48d1-9898-23450b20a2bf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-380984809379540189362582", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c7d4fd11-8386-48d1-9898-23450b20a2bf", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-380984809379540189362582", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c7d4fd11-8386-48d1-9898-23450b20a2bf" ] + }, + "id" : "urn:uuid:8f54c739-065b-4e7f-ba52-3a221d7c5476" + } ] + }, { + "catenaXId" : "urn:uuid:1be32f19-97a3-4833-af9d-23b1afae3a9d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1be32f19-97a3-4833-af9d-23b1afae3a9d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-981931594284615814040788", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be32f19-97a3-4833-af9d-23b1afae3a9d", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-981931594284615814040788", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1be32f19-97a3-4833-af9d-23b1afae3a9d" ] + }, + "id" : "urn:uuid:5ed518eb-a232-46c8-8cd8-e59f66b0f203" + } ] + }, { + "catenaXId" : "urn:uuid:69b3a1a8-508b-46a7-b75c-132d044f840d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:69b3a1a8-508b-46a7-b75c-132d044f840d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-221350426055638803685075", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:69b3a1a8-508b-46a7-b75c-132d044f840d", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-221350426055638803685075", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:69b3a1a8-508b-46a7-b75c-132d044f840d" ] + }, + "id" : "urn:uuid:e4130fa3-47c2-4a93-9fef-d8c3b7d67211" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", + "childItems" : [ { + "catenaXId" : "urn:uuid:e70e47c9-7e9f-4b2f-84c2-981bcb1a715d", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8bfa9678-bb59-446a-96a2-80901f93ec42", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-902301340797650258605601", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-902301340797650258605601", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-902301340797650258605601", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d" ] + }, + "id" : "urn:uuid:d89f053c-95df-47f7-bee7-305632d8b2fd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 45, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 10, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 49, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e70e47c9-7e9f-4b2f-84c2-981bcb1a715d", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e70e47c9-7e9f-4b2f-84c2-981bcb1a715d" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "65013P2-70", + "key" : "manufacturerPartId" + }, { + "value" : "NO-208669126331728825350340", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e70e47c9-7e9f-4b2f-84c2-981bcb1a715d", + "partTypeInformation" : { + "manufacturerPartId" : "65013P2-70", + "customerPartId" : "65013P2-70", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 60, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 51, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09", + "childItems" : [ { + "catenaXId" : "urn:uuid:8d27d6c6-8c3f-442f-b030-b7cdba53fc15", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "42200W4-70", + "key" : "manufacturerPartId" + }, { + "value" : "NO-562112057126712325072228", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09", + "partTypeInformation" : { + "manufacturerPartId" : "42200W4-70", + "customerPartId" : "42200W4-70", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-562112057126712325072228", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "42200W4-70", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09" ] + }, + "id" : "urn:uuid:5673f5cc-b329-4f14-99df-de52e96c5975" + } ] + }, { + "catenaXId" : "urn:uuid:8d27d6c6-8c3f-442f-b030-b7cdba53fc15", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8d27d6c6-8c3f-442f-b030-b7cdba53fc15" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "93928Z3-45", + "key" : "manufacturerPartId" + }, { + "value" : "NO-355684567281158893505199", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8d27d6c6-8c3f-442f-b030-b7cdba53fc15", + "partTypeInformation" : { + "manufacturerPartId" : "93928Z3-45", + "customerPartId" : "93928Z3-45", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 5, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 48, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8bfa9678-bb59-446a-96a2-80901f93ec42", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:8bfa9678-bb59-446a-96a2-80901f93ec42", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8bfa9678-bb59-446a-96a2-80901f93ec42" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "95247P9-30", + "key" : "manufacturerPartId" + }, { + "value" : "NO-806734358973719252877267", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8bfa9678-bb59-446a-96a2-80901f93ec42", + "partTypeInformation" : { + "manufacturerPartId" : "95247P9-30", + "customerPartId" : "95247P9-30", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e", + "childItems" : [ { + "catenaXId" : "urn:uuid:5c2a2893-57bd-44b6-8598-477f07312906", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e0e9c31b-9117-498c-bcd9-365959dcb908", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "77940T4-21", + "key" : "manufacturerPartId" + }, { + "value" : "NO-029994272372954480874351", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e", + "partTypeInformation" : { + "manufacturerPartId" : "77940T4-21", + "customerPartId" : "77940T4-21", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-029994272372954480874351", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77940T4-21", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e" ] + }, + "id" : "urn:uuid:e4abeedb-b9a3-4ca1-ab88-76ee18d9d277" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 52, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5c2a2893-57bd-44b6-8598-477f07312906", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5c2a2893-57bd-44b6-8598-477f07312906" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "95274R5-52", + "key" : "manufacturerPartId" + }, { + "value" : "NO-544831897923618963595631", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5c2a2893-57bd-44b6-8598-477f07312906", + "partTypeInformation" : { + "manufacturerPartId" : "95274R5-52", + "customerPartId" : "95274R5-52", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 51, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 30, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1", + "childItems" : [ { + "catenaXId" : "urn:uuid:633f11d8-d463-4a76-b7fa-67099df9a9b1", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "66588M0-07", + "key" : "manufacturerPartId" + }, { + "value" : "NO-323820024704001701891466", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1", + "partTypeInformation" : { + "manufacturerPartId" : "66588M0-07", + "customerPartId" : "66588M0-07", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-323820024704001701891466", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "66588M0-07", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1" ] + }, + "id" : "urn:uuid:f1ab1bcd-0aee-4b91-9713-18901828044d" + } ] + }, { + "catenaXId" : "urn:uuid:633f11d8-d463-4a76-b7fa-67099df9a9b1", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:633f11d8-d463-4a76-b7fa-67099df9a9b1" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "86228J7-85", + "key" : "manufacturerPartId" + }, { + "value" : "NO-447255509797775353937096", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:633f11d8-d463-4a76-b7fa-67099df9a9b1", + "partTypeInformation" : { + "manufacturerPartId" : "86228J7-85", + "customerPartId" : "86228J7-85", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 55, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 49, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e0e9c31b-9117-498c-bcd9-365959dcb908", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e0e9c31b-9117-498c-bcd9-365959dcb908" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "77162I2-15", + "key" : "manufacturerPartId" + }, { + "value" : "NO-560646965328957183371566", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0e9c31b-9117-498c-bcd9-365959dcb908", + "partTypeInformation" : { + "manufacturerPartId" : "77162I2-15", + "customerPartId" : "77162I2-15", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-560646965328957183371566", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77162I2-15", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e0e9c31b-9117-498c-bcd9-365959dcb908" ] + }, + "id" : "urn:uuid:fb915801-d645-444f-8528-e029ed369a6b" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 77, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 22, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "childItems" : [ { + "catenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-068474169490190496947027", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-068474169490190496947027", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291" ] + }, + "id" : "urn:uuid:ca950045-1e1e-46f2-8dcb-a9aabbe309ce" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 45, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 43, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 29, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:199cde2c-af12-461c-baf9-295080a03022", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-123304362967044681866975", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-123304362967044681866975", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, + "id" : "urn:uuid:e8e74fd0-7ff7-4c93-ae1b-33c05072f9d5" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 19, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 10, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 38, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-989648608233719381216301", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-989648608233719381216301", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28" ] + }, + "id" : "urn:uuid:d9fb18fa-feb3-4120-b875-bbd063191bf0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-12T09:57:06.698Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T05:39:47.699Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-563053315875147855893075", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-563053315875147855893075", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788" ] + }, + "id" : "urn:uuid:a88be05e-30de-4964-ac2b-156a6f332d46" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-03-21T00:10:04.711Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T08:24:54.711Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-618539582663916865775956", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-618539582663916865775956", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d" ] + }, + "id" : "urn:uuid:48dad1d3-5905-4f69-9845-8bfa5a21ce5f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-17T15:40:45.722Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T01:57:19.722Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-249400790537177480090284", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-249400790537177480090284", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f" ] + }, + "id" : "urn:uuid:b2b82189-a65e-481b-be60-dac90b6f7d83" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-21T06:19:15.732Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T06:13:08.732Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-145949775230556790215526", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-145949775230556790215526", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c" ] + }, + "id" : "urn:uuid:342af85a-c08d-4b3b-a207-71004dc17234" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-21T17:49:27.742Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T16:06:31.742Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-912739001309933387152819", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-912739001309933387152819", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d" ] + }, + "id" : "urn:uuid:41618761-6387-4fc4-88ab-05c0abe8a9e6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-13T07:54:37.752Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T21:53:09.752Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-971493048105125874192242", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-971493048105125874192242", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683" ] + }, + "id" : "urn:uuid:2752a6c5-94e3-4d2a-b24a-e5c50cce81a4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-03T21:22:17.762Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T08:13:32.762Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:199cde2c-af12-461c-baf9-295080a03022", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:199cde2c-af12-461c-baf9-295080a03022", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:199cde2c-af12-461c-baf9-295080a03022" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-501866655836318363245972", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:199cde2c-af12-461c-baf9-295080a03022", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-501866655836318363245972", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:199cde2c-af12-461c-baf9-295080a03022" ] + }, + "id" : "urn:uuid:5c3f4a6b-d746-4069-b608-99237651a643" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-30T12:17:20.773Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T10:41:53.773Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-010742952603610513396039", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-010742952603610513396039", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791" ] + }, + "id" : "urn:uuid:df5a51a3-41fa-4f19-9ef1-f270727835e4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-01-28T15:56:59.783Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T03:21:17.783Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-524161003561936231951737", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-524161003561936231951737", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f" ] + }, + "id" : "urn:uuid:8fda81d5-0f6e-4963-84c4-532846506be0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-05T13:00:31.793Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T18:52:49.793Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-132022559257608721613287", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-132022559257608721613287", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, + "id" : "urn:uuid:5c5b0662-e8ad-4804-8e9c-6cf03d4af870" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 40, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 49, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 49, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-118286483968972290520509", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-118286483968972290520509", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01" ] + }, + "id" : "urn:uuid:077cdb12-4d47-4d6e-98a7-fb970eb72ec4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-12-15T16:43:56.814Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T16:28:45.814Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-565556022768397569491240", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-565556022768397569491240", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5" ] + }, + "id" : "urn:uuid:0d2e2f8d-cd34-49d3-a85d-49128083ccf9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-15T03:07:34.823Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T14:41:15.823Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-833472280374333587792293", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-833472280374333587792293", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5" ] + }, + "id" : "urn:uuid:7f7655c9-8d3c-428c-ab3e-aff2fc9cd9f0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-28T09:37:15.833Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T05:35:50.833Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-891234931265003747565203", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-891234931265003747565203", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4" ] + }, + "id" : "urn:uuid:478e11c2-31d0-44c3-b6c7-cec8e0203a5e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-20T06:02:23.843Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T05:27:18.843Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-314263287035430393386872", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-314263287035430393386872", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5" ] + }, + "id" : "urn:uuid:853f9e2c-be6f-4f4b-bfba-87831fa7098f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-29T00:12:19.853Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T21:21:14.853Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-730189159004571753607891", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-730189159004571753607891", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b" ] + }, + "id" : "urn:uuid:9449ffcf-0b0d-4351-b94f-152146497ecd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-12-24T09:09:50.862Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T06:05:38.862Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-433004295463170749679788", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-433004295463170749679788", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975" ] + }, + "id" : "urn:uuid:61cb0e17-a6b1-4035-bf96-fad7f73b5cb3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-26T05:07:21.872Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T11:27:50.872Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-153895169698029662313846", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-153895169698029662313846", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718" ] + }, + "id" : "urn:uuid:5f40d010-d98d-4864-9270-01037b5ff37f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-12-11T09:50:15.881Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T05:13:26.881Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-003248752135994819627109", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-003248752135994819627109", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5" ] + }, + "id" : "urn:uuid:f213ff41-52d0-4ba9-8b65-f0b442122417" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-05-10T11:43:13.890Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T06:19:24.890Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-868243667839455335702028", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-868243667839455335702028", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb" ] + }, + "id" : "urn:uuid:5375d304-8549-4f8c-a1c4-3c95891510c5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-07T23:23:07.900Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T02:48:10.900Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-885505179223894024872690", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-885505179223894024872690", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, + "id" : "urn:uuid:d95d7a84-8c75-4029-b57e-7cd9afa4834c" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 69, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 51, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 89, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-757777546333503741140256", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-757777546333503741140256", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373" ] + }, + "id" : "urn:uuid:6d98b12e-266c-4712-8f5c-7000b1bd2ac1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-24T06:32:25.918Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T01:40:56.918Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-343304735985497904336983", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-343304735985497904336983", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427" ] + }, + "id" : "urn:uuid:e0857a13-ed9b-41a8-adba-5ccb374ec0c0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-02T02:13:47.928Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T04:34:22.928Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-392335315153974451872449", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-392335315153974451872449", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df" ] + }, + "id" : "urn:uuid:b1d1f98a-4c0e-4ecd-8745-1f0e41723f95" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-11T07:59:23.938Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T23:07:41.938Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-705370450476702708009751", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-705370450476702708009751", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333" ] + }, + "id" : "urn:uuid:c62e9158-d900-4056-b0ae-91e9d8e49abb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-04T13:36:15.947Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T07:15:47.947Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-815103255955338634538429", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-815103255955338634538429", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336" ] + }, + "id" : "urn:uuid:bf024a09-9e22-4bb1-bd71-dae601263601" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-31T15:56:27.956Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T11:02:49.956Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-672317135299693054360891", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-672317135299693054360891", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e" ] + }, + "id" : "urn:uuid:d7898f72-8e97-40a6-badc-2fdbff48638a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-29T20:17:39.965Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T11:22:11.965Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-749929799898396221060331", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-749929799898396221060331", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160" ] + }, + "id" : "urn:uuid:90e97ddd-1bb0-4266-8335-2ce39212a24d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-03T20:33:51.974Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T07:26:02.974Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-904737126718461891543853", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-904737126718461891543853", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf" ] + }, + "id" : "urn:uuid:20c55747-ed74-4038-ab44-403315a0bdd3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-21T01:28:57.983Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T01:11:05.983Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-358163337340373785216386", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-358163337340373785216386", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de" ] + }, + "id" : "urn:uuid:fcb8ba98-fe51-483e-8674-53099cbe105c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-19T04:24:17.992Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T05:05:25.992Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-223810486871442498898180", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-223810486871442498898180", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb" ] + }, + "id" : "urn:uuid:f370e8f7-6c4a-4f8c-9b15-c6570dc1b3f1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-05-23T13:37:26.002Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T11:55:03.002Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-780643399127484869392748", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-780643399127484869392748", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, + "id" : "urn:uuid:dbc3a692-25b7-4436-ac44-21d4a4a42f0f" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 53, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 65, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 63, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-105570536347035308072674", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-105570536347035308072674", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45" ] + }, + "id" : "urn:uuid:b71a4198-eed4-443b-a293-d5ec64228484" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-17T12:52:56.022Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T16:33:02.022Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-465547634227681951705969", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-465547634227681951705969", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577" ] + }, + "id" : "urn:uuid:a3e4bd7d-3a43-4eb3-9693-5597dc32004a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-06T15:53:10.036Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T09:01:40.036Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-898620799113268560785138", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-898620799113268560785138", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662" ] + }, + "id" : "urn:uuid:91d1d4ce-16c1-4b2d-8a66-b9cc545ab47d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-07T06:25:45.050Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T20:16:45.050Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-479897463430753244842254", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-479897463430753244842254", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22" ] + }, + "id" : "urn:uuid:7d0990fe-ee58-4466-8e48-4e38e717893c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-04T00:13:44.062Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T11:59:51.062Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-502763378415699605328644", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-502763378415699605328644", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97" ] + }, + "id" : "urn:uuid:2552829c-18c3-404d-91f5-a2ce8dbdb15c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-23T11:22:38.085Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T19:05:02.085Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-360311273807284800901680", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-360311273807284800901680", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e" ] + }, + "id" : "urn:uuid:175d4343-782d-4d39-9eab-cf0c965f0be8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-05T11:30:32.094Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T21:06:26.094Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-601997849939217534123437", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-601997849939217534123437", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61" ] + }, + "id" : "urn:uuid:1efe9689-1078-49b8-a0a2-bf693f1be8ec" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-05T16:31:54.106Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T15:37:41.106Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-030584913845794174034849", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-030584913845794174034849", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30" ] + }, + "id" : "urn:uuid:51ce27b0-9f04-44f7-8816-a10124918846" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-09T12:10:18.118Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T08:51:04.118Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-388499097179144726356932", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-388499097179144726356932", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061" ] + }, + "id" : "urn:uuid:e05611af-8a8d-4384-9424-7141c6e47355" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-23T17:50:03.133Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T11:26:54.133Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-450760011255031014997936", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-450760011255031014997936", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846" ] + }, + "id" : "urn:uuid:97eaf582-459b-4ff2-b46f-f0efb486717d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-18T09:02:35.146Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T06:51:43.146Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-127202829988649938794849", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-127202829988649938794849", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, + "id" : "urn:uuid:0a32dba1-965d-4a49-9a35-2e3d32c9e66c" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 43, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 5, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 54, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-053584692943767451864562", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-053584692943767451864562", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198" ] + }, + "id" : "urn:uuid:ea527334-1b8f-4d3e-b1ef-17fb12bc6518" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-15T09:54:11.170Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T11:22:05.170Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-926058155483974763704177", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-926058155483974763704177", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e" ] + }, + "id" : "urn:uuid:bac3c430-353e-4792-92a1-a461245d6fc8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-15T19:07:33.182Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T20:30:39.182Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-348194527514283774926803", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-348194527514283774926803", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939" ] + }, + "id" : "urn:uuid:3a546ab5-be86-4943-972f-bb3df8556134" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-03T11:03:15.196Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T09:04:15.196Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-892950031732055992717682", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-892950031732055992717682", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666" ] + }, + "id" : "urn:uuid:01952594-2de6-40bb-9e6c-c2d689a19c1c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-08-02T21:15:42.207Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T04:54:27.207Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-355607848301839658165289", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-355607848301839658165289", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327" ] + }, + "id" : "urn:uuid:006ef295-9b4b-47ec-906a-f0bc695c5622" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-04-03T01:37:04.220Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T04:11:43.220Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-978396834573767448008767", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-978396834573767448008767", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361" ] + }, + "id" : "urn:uuid:713b843b-f341-49bd-9e04-62d350ad64e0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-04T08:54:06.229Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T10:43:25.229Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-099653861409230759396931", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-099653861409230759396931", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f" ] + }, + "id" : "urn:uuid:59cfd69e-1188-45c6-b8ce-71141e4b71db" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-28T03:00:44.237Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T18:52:39.237Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-066848386800264748012452", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-066848386800264748012452", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103" ] + }, + "id" : "urn:uuid:7c6f5c89-e33d-4db1-8a63-ebe929f4853b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-05-27T23:51:35.247Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T15:38:27.247Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-136559831377627587373194", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-136559831377627587373194", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe" ] + }, + "id" : "urn:uuid:39291120-177e-46ff-8a0d-4770cb175526" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-17T13:42:31.257Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T16:15:50.257Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-341791827414835648320395", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-341791827414835648320395", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e" ] + }, + "id" : "urn:uuid:17cf7930-f245-474c-beb5-4c4d0d976412" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-15T22:24:30.266Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T15:52:55.266Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-528016514222845035040098", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-528016514222845035040098", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, + "id" : "urn:uuid:9da47460-884a-47da-b5ec-49b3acf6d8ef" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 59, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 85, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 72, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-469477617020334729736436", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-469477617020334729736436", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695" ] + }, + "id" : "urn:uuid:eeee109c-13ac-4d7a-b9e3-aab82f187cb9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-21T17:23:48.285Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T09:53:39.285Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-577674274583069776116802", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-577674274583069776116802", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb" ] + }, + "id" : "urn:uuid:77ea39dc-9c44-4e9e-bb69-c5e94768db91" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-02-09T15:22:58.295Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T15:59:44.295Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-989757204234974113284997", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-989757204234974113284997", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08" ] + }, + "id" : "urn:uuid:e286d457-16ad-4edc-8b63-faf4ace90b62" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-17T10:36:41.304Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T13:14:21.304Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-411531951779669561404713", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-411531951779669561404713", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940" ] + }, + "id" : "urn:uuid:706ac1a2-628b-4c9c-93fc-1810830245c3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-20T08:56:25.314Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T01:17:16.314Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-949571702267190753065020", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-949571702267190753065020", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e" ] + }, + "id" : "urn:uuid:1b2ba6b4-7773-4a79-a624-6e654d1d47ba" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-10-29T16:46:44.323Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T16:41:39.323Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-216183737955314873039095", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-216183737955314873039095", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51" ] + }, + "id" : "urn:uuid:83b04bcb-53e0-44e6-844d-212a5cc0864b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-16T17:29:37.333Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T00:28:16.333Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-790515657599340815014049", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-790515657599340815014049", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24" ] + }, + "id" : "urn:uuid:ab094916-c3e2-4a34-9104-29884d5d75a1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-11-30T00:10:22.342Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T13:52:22.342Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-659770338895233756502264", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-659770338895233756502264", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0" ] + }, + "id" : "urn:uuid:3a683391-7112-498a-a2b3-064575f8cf4c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-02T21:47:07.351Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T02:18:59.351Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-525563236712603084019992", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-525563236712603084019992", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f" ] + }, + "id" : "urn:uuid:80aa653f-8bfc-4f7f-8960-e45e8a299df7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-07T02:29:03.360Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T05:18:25.360Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-940788870778620402032515", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-940788870778620402032515", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833" ] + }, + "id" : "urn:uuid:67593e87-ed80-49a0-8b9f-f4b570a3f28a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-20T05:01:04.376Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T08:21:16.376Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "engine" : { + "size" : 2998, + "power" : 152 + }, + "emptyWeight" : 1.79, + "fuel" : "hybrid petrol/electric", + "vehicleModel" : "Vehicle Hybrid", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "childItems" : [ { + "catenaXId" : "urn:uuid:af7f5827-a9d0-41ce-9871-06dda6d48c13", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:268795d2-91e8-40f3-b942-db053427cd1a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dd12bc61-2833-49c4-9278-babe8c7dd04e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:105560fe-a174-4da2-8006-70a788431888", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:34aac0ea-f76d-4b42-9af1-43113b0c9c5c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0d74ff2e-be32-4ed4-9dc2-84f74b98e558", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4c71271c-3059-40e6-b8ad-8f52f376decc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b3b6fdef-9fa8-485e-932d-41be74a687a8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:65c3e3da-586b-4f03-914b-e0f479fee1d1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:afa8cca0-dafb-4888-bb85-3043a546fca9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b63b2704-ff2c-4842-955d-2db8531cb846", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f22146d8-bd23-4837-ac54-3c36e8de88fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57c1fab4-b93f-4acf-97c9-e07d74366715", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3342259f-1fe2-413d-9c5d-62f272915612", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:09930847-5704-4e32-ab51-6165027a662b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:59aa7cb4-44ee-4d5e-bdb1-80c5c6b50a50", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:62ba1615-9416-4c49-84e3-cfff34291535", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f8824b9f-5d3d-4ca7-9212-5cef3a496e96", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:16c7a77a-c3eb-4332-8ff5-1e3b909b9c46", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:06cb2f3f-a2f8-489a-8a7c-fe7a387c09b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4f06424c-1a54-4d2f-9f9c-837ec10d9b61", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e341645f-7683-4853-be58-284198e520cf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9c8d81e8-c276-49c1-a976-2159f90302ad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2672f809-93a1-41db-aa4e-e588323957a3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3b7a1d6e-1eeb-4007-9a20-36e973996c10", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eb3d8803-d9a5-417a-b3f8-c0e51a5ba55a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cb0ea2c0-6360-422a-8bb2-87743f37d3f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6c4e3396-4016-4664-b642-fa4e518c8bee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4b0eb27b-8c3f-4f4c-b7fd-fd5d2a8a144a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7ca8eef4-4b2e-437b-9ac9-07252a960acb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "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" + } ], + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "GG-27", + "key" : "manufacturerPartId" + }, { + "value" : "OMBSVXJATULSZWBTF", + "key" : "partInstanceId" + }, { + "value" : "OMBSVXJATULSZWBTF", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-01-09T23:57:16.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "partTypeInformation" : { + "manufacturerPartId" : "GG-27", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Hybrid" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMBSVXJATULSZWBTF", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "GG-27", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_hybrid.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Hybrid" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, + "id" : "urn:uuid:22751af9-e6bd-41c1-a88a-a2f24df6addb" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 49, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 1, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 21, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 8, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 56, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 21, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 14, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 45, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 10, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 66, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:af7f5827-a9d0-41ce-9871-06dda6d48c13", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af7f5827-a9d0-41ce-9871-06dda6d48c13" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-205623400865144159827642", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af7f5827-a9d0-41ce-9871-06dda6d48c13", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-205623400865144159827642", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:af7f5827-a9d0-41ce-9871-06dda6d48c13" ] + }, + "id" : "urn:uuid:1ffe15d5-637f-4c2c-a3aa-f746da2b6fa6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:268795d2-91e8-40f3-b942-db053427cd1a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:268795d2-91e8-40f3-b942-db053427cd1a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-780917167513993510810994", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:268795d2-91e8-40f3-b942-db053427cd1a", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-780917167513993510810994", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:268795d2-91e8-40f3-b942-db053427cd1a" ] + }, + "id" : "urn:uuid:19b7f725-d9d8-4c75-9557-ad907f872551" + } ] + }, { + "catenaXId" : "urn:uuid:dd12bc61-2833-49c4-9278-babe8c7dd04e", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dd12bc61-2833-49c4-9278-babe8c7dd04e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-042817708899940989472938", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dd12bc61-2833-49c4-9278-babe8c7dd04e", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-042817708899940989472938", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:dd12bc61-2833-49c4-9278-babe8c7dd04e" ] + }, + "id" : "urn:uuid:3fdd8e1a-2704-4246-9470-4e86d23c8434" + } ] + }, { + "catenaXId" : "urn:uuid:105560fe-a174-4da2-8006-70a788431888", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:105560fe-a174-4da2-8006-70a788431888" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-190877663674280428984691", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:105560fe-a174-4da2-8006-70a788431888", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-190877663674280428984691", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:105560fe-a174-4da2-8006-70a788431888" ] + }, + "id" : "urn:uuid:3ed743c5-4c78-4889-9af8-43a00eb85083" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a", + "childItems" : [ { + "catenaXId" : "urn:uuid:5fe3762c-40a6-4107-a917-1ed8c1c94ba5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-677539446668860728938258", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-677539446668860728938258", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a" ] + }, + "id" : "urn:uuid:0c43fb89-2213-45fb-a704-5f0bced0144c" + } ] + }, { + "catenaXId" : "urn:uuid:5fe3762c-40a6-4107-a917-1ed8c1c94ba5", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5fe3762c-40a6-4107-a917-1ed8c1c94ba5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-251326901605483173349991", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5fe3762c-40a6-4107-a917-1ed8c1c94ba5", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-251326901605483173349991", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5fe3762c-40a6-4107-a917-1ed8c1c94ba5" ] + }, + "id" : "urn:uuid:5991577a-f95f-4725-826b-2ffb75888009" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237", + "childItems" : [ { + "catenaXId" : "urn:uuid:9ad4c28f-71c5-4ab0-9ade-9c020b8208c2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-053772302438683915973354", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-053772302438683915973354", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237" ] + }, + "id" : "urn:uuid:186474f9-ef53-4f22-b1cc-26ebd5f0d2ce" + } ] + }, { + "catenaXId" : "urn:uuid:9ad4c28f-71c5-4ab0-9ade-9c020b8208c2", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9ad4c28f-71c5-4ab0-9ade-9c020b8208c2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-358139675000629594196267", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9ad4c28f-71c5-4ab0-9ade-9c020b8208c2", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-358139675000629594196267", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9ad4c28f-71c5-4ab0-9ade-9c020b8208c2" ] + }, + "id" : "urn:uuid:d8886428-6e21-46ac-8288-a0ec6d13e6a0" + } ] + }, { + "catenaXId" : "urn:uuid:34aac0ea-f76d-4b42-9af1-43113b0c9c5c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:34aac0ea-f76d-4b42-9af1-43113b0c9c5c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-816510250474586631797668", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:34aac0ea-f76d-4b42-9af1-43113b0c9c5c", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-816510250474586631797668", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:34aac0ea-f76d-4b42-9af1-43113b0c9c5c" ] + }, + "id" : "urn:uuid:c59ed21c-c306-475a-a67a-d37bcfbb437f" + } ] + }, { + "catenaXId" : "urn:uuid:0d74ff2e-be32-4ed4-9dc2-84f74b98e558", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0d74ff2e-be32-4ed4-9dc2-84f74b98e558" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-063564509712076778824908", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0d74ff2e-be32-4ed4-9dc2-84f74b98e558", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-063564509712076778824908", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0d74ff2e-be32-4ed4-9dc2-84f74b98e558" ] + }, + "id" : "urn:uuid:e8b8c1ea-8971-447c-8e23-945de31d2307" + } ] + }, { + "catenaXId" : "urn:uuid:4c71271c-3059-40e6-b8ad-8f52f376decc", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4c71271c-3059-40e6-b8ad-8f52f376decc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-486902356656964458914495", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4c71271c-3059-40e6-b8ad-8f52f376decc", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-486902356656964458914495", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4c71271c-3059-40e6-b8ad-8f52f376decc" ] + }, + "id" : "urn:uuid:ebffc9bb-9d51-482d-bad1-8270e1610d6d" + } ] + }, { + "catenaXId" : "urn:uuid:b3b6fdef-9fa8-485e-932d-41be74a687a8", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b3b6fdef-9fa8-485e-932d-41be74a687a8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-162067785044541893861942", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b3b6fdef-9fa8-485e-932d-41be74a687a8", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-162067785044541893861942", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b3b6fdef-9fa8-485e-932d-41be74a687a8" ] + }, + "id" : "urn:uuid:a2ce4a5b-3f32-46a4-a2b9-1de296e06b1d" + } ] + }, { + "catenaXId" : "urn:uuid:65c3e3da-586b-4f03-914b-e0f479fee1d1", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:65c3e3da-586b-4f03-914b-e0f479fee1d1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-340689239135187110143412", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:65c3e3da-586b-4f03-914b-e0f479fee1d1", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-340689239135187110143412", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:65c3e3da-586b-4f03-914b-e0f479fee1d1" ] + }, + "id" : "urn:uuid:16acbcd2-cba2-4894-bc41-e18871279812" + } ] + }, { + "catenaXId" : "urn:uuid:afa8cca0-dafb-4888-bb85-3043a546fca9", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:afa8cca0-dafb-4888-bb85-3043a546fca9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-472425255603812572365051", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:afa8cca0-dafb-4888-bb85-3043a546fca9", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-472425255603812572365051", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:afa8cca0-dafb-4888-bb85-3043a546fca9" ] + }, + "id" : "urn:uuid:6b77c02a-9cd3-45a7-b721-5eecec5b4fd3" + } ] + }, { + "catenaXId" : "urn:uuid:b63b2704-ff2c-4842-955d-2db8531cb846", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b63b2704-ff2c-4842-955d-2db8531cb846" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-733064747157836702158118", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b63b2704-ff2c-4842-955d-2db8531cb846", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-733064747157836702158118", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b63b2704-ff2c-4842-955d-2db8531cb846" ] + }, + "id" : "urn:uuid:3f5db2d0-b26c-4459-a309-ed3c54bb7429" + } ] + }, { + "catenaXId" : "urn:uuid:f22146d8-bd23-4837-ac54-3c36e8de88fa", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f22146d8-bd23-4837-ac54-3c36e8de88fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-920065841280050113992167", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f22146d8-bd23-4837-ac54-3c36e8de88fa", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-920065841280050113992167", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f22146d8-bd23-4837-ac54-3c36e8de88fa" ] + }, + "id" : "urn:uuid:825888d1-a61c-40a0-8260-7cb3053e4bfc" + } ] + }, { + "catenaXId" : "urn:uuid:57c1fab4-b93f-4acf-97c9-e07d74366715", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57c1fab4-b93f-4acf-97c9-e07d74366715" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-977957953567397588360659", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57c1fab4-b93f-4acf-97c9-e07d74366715", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-977957953567397588360659", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:57c1fab4-b93f-4acf-97c9-e07d74366715" ] + }, + "id" : "urn:uuid:a212906e-89dd-4612-8f0b-72f3cde511e4" + } ] + }, { + "catenaXId" : "urn:uuid:3342259f-1fe2-413d-9c5d-62f272915612", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3342259f-1fe2-413d-9c5d-62f272915612" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-562884148991966021984859", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3342259f-1fe2-413d-9c5d-62f272915612", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-562884148991966021984859", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3342259f-1fe2-413d-9c5d-62f272915612" ] + }, + "id" : "urn:uuid:e6ccfafa-97b6-4d48-a5e5-24070df52e40" + } ] + }, { + "catenaXId" : "urn:uuid:09930847-5704-4e32-ab51-6165027a662b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:09930847-5704-4e32-ab51-6165027a662b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-342989481265881847314156", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:09930847-5704-4e32-ab51-6165027a662b", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-342989481265881847314156", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:09930847-5704-4e32-ab51-6165027a662b" ] + }, + "id" : "urn:uuid:123111e3-9f58-4358-a778-f6ee8c3704d9" + } ] + }, { + "catenaXId" : "urn:uuid:59aa7cb4-44ee-4d5e-bdb1-80c5c6b50a50", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:59aa7cb4-44ee-4d5e-bdb1-80c5c6b50a50" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-631338064848074317379803", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:59aa7cb4-44ee-4d5e-bdb1-80c5c6b50a50", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-631338064848074317379803", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:59aa7cb4-44ee-4d5e-bdb1-80c5c6b50a50" ] + }, + "id" : "urn:uuid:ca2447b9-491c-48d8-9124-7378867e3152" + } ] + }, { + "catenaXId" : "urn:uuid:62ba1615-9416-4c49-84e3-cfff34291535", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:62ba1615-9416-4c49-84e3-cfff34291535" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-429996589854321322799071", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:62ba1615-9416-4c49-84e3-cfff34291535", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-429996589854321322799071", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:62ba1615-9416-4c49-84e3-cfff34291535" ] + }, + "id" : "urn:uuid:de7d3b5f-d66d-4074-b291-974d307ac308" + } ] + }, { + "catenaXId" : "urn:uuid:f8824b9f-5d3d-4ca7-9212-5cef3a496e96", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f8824b9f-5d3d-4ca7-9212-5cef3a496e96" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-988838044734200849742987", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f8824b9f-5d3d-4ca7-9212-5cef3a496e96", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-988838044734200849742987", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f8824b9f-5d3d-4ca7-9212-5cef3a496e96" ] + }, + "id" : "urn:uuid:5744bb2f-269e-4241-ae0f-48ab1b9e2c0a" + } ] + }, { + "catenaXId" : "urn:uuid:16c7a77a-c3eb-4332-8ff5-1e3b909b9c46", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:16c7a77a-c3eb-4332-8ff5-1e3b909b9c46" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-459079359534002819737106", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:16c7a77a-c3eb-4332-8ff5-1e3b909b9c46", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-459079359534002819737106", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:16c7a77a-c3eb-4332-8ff5-1e3b909b9c46" ] + }, + "id" : "urn:uuid:96447178-3b45-40f8-95a0-3cc6b1a08335" + } ] + }, { + "catenaXId" : "urn:uuid:06cb2f3f-a2f8-489a-8a7c-fe7a387c09b2", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:06cb2f3f-a2f8-489a-8a7c-fe7a387c09b2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-287855924391887950699803", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:06cb2f3f-a2f8-489a-8a7c-fe7a387c09b2", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-287855924391887950699803", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:06cb2f3f-a2f8-489a-8a7c-fe7a387c09b2" ] + }, + "id" : "urn:uuid:a6ecf998-b82b-4676-b0f5-50db2d57265b" + } ] + }, { + "catenaXId" : "urn:uuid:4f06424c-1a54-4d2f-9f9c-837ec10d9b61", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f06424c-1a54-4d2f-9f9c-837ec10d9b61" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-279443018214474291795685", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f06424c-1a54-4d2f-9f9c-837ec10d9b61", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-279443018214474291795685", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4f06424c-1a54-4d2f-9f9c-837ec10d9b61" ] + }, + "id" : "urn:uuid:c26c2854-fd10-4ac6-aa97-c186e46aaef0" + } ] + }, { + "catenaXId" : "urn:uuid:e341645f-7683-4853-be58-284198e520cf", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e341645f-7683-4853-be58-284198e520cf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-126805181803682299187852", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e341645f-7683-4853-be58-284198e520cf", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-126805181803682299187852", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e341645f-7683-4853-be58-284198e520cf" ] + }, + "id" : "urn:uuid:26810496-cfa7-4b75-8e3b-ba6db59672af" + } ] + }, { + "catenaXId" : "urn:uuid:9c8d81e8-c276-49c1-a976-2159f90302ad", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9c8d81e8-c276-49c1-a976-2159f90302ad" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-293907487450552117471397", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9c8d81e8-c276-49c1-a976-2159f90302ad", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-293907487450552117471397", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9c8d81e8-c276-49c1-a976-2159f90302ad" ] + }, + "id" : "urn:uuid:ac5c577a-04da-44a2-8808-4c3af5431456" + } ] + }, { + "catenaXId" : "urn:uuid:2672f809-93a1-41db-aa4e-e588323957a3", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2672f809-93a1-41db-aa4e-e588323957a3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-920532996611716214131780", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2672f809-93a1-41db-aa4e-e588323957a3", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-920532996611716214131780", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2672f809-93a1-41db-aa4e-e588323957a3" ] + }, + "id" : "urn:uuid:877f7e52-3f93-4058-b7f7-8f20a909d4cd" + } ] + }, { + "catenaXId" : "urn:uuid:3b7a1d6e-1eeb-4007-9a20-36e973996c10", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3b7a1d6e-1eeb-4007-9a20-36e973996c10" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-751052018589084990759094", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3b7a1d6e-1eeb-4007-9a20-36e973996c10", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-751052018589084990759094", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3b7a1d6e-1eeb-4007-9a20-36e973996c10" ] + }, + "id" : "urn:uuid:0b75580e-df0e-456a-a3d7-0e9e05ed4c74" + } ] + }, { + "catenaXId" : "urn:uuid:eb3d8803-d9a5-417a-b3f8-c0e51a5ba55a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eb3d8803-d9a5-417a-b3f8-c0e51a5ba55a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-152368916178725691984430", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eb3d8803-d9a5-417a-b3f8-c0e51a5ba55a", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-152368916178725691984430", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:eb3d8803-d9a5-417a-b3f8-c0e51a5ba55a" ] + }, + "id" : "urn:uuid:64298888-13bd-4db3-8002-dfa9cbf84118" + } ] + }, { + "catenaXId" : "urn:uuid:cb0ea2c0-6360-422a-8bb2-87743f37d3f0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cb0ea2c0-6360-422a-8bb2-87743f37d3f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-983624819788088084625550", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cb0ea2c0-6360-422a-8bb2-87743f37d3f0", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-983624819788088084625550", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cb0ea2c0-6360-422a-8bb2-87743f37d3f0" ] + }, + "id" : "urn:uuid:526789d4-fbeb-4696-be4f-fa08d0db75ed" + } ] + }, { + "catenaXId" : "urn:uuid:6c4e3396-4016-4664-b642-fa4e518c8bee", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6c4e3396-4016-4664-b642-fa4e518c8bee" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-273550356539032733713873", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6c4e3396-4016-4664-b642-fa4e518c8bee", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-273550356539032733713873", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6c4e3396-4016-4664-b642-fa4e518c8bee" ] + }, + "id" : "urn:uuid:77a6ef88-3e7b-44b5-a879-031d9c456ed9" + } ] + }, { + "catenaXId" : "urn:uuid:4b0eb27b-8c3f-4f4c-b7fd-fd5d2a8a144a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4b0eb27b-8c3f-4f4c-b7fd-fd5d2a8a144a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-647931753463566978406369", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b0eb27b-8c3f-4f4c-b7fd-fd5d2a8a144a", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-647931753463566978406369", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4b0eb27b-8c3f-4f4c-b7fd-fd5d2a8a144a" ] + }, + "id" : "urn:uuid:00ca530d-36e5-4b6c-a89a-d2de65876961" + } ] + }, { + "catenaXId" : "urn:uuid:7ca8eef4-4b2e-437b-9ac9-07252a960acb", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7ca8eef4-4b2e-437b-9ac9-07252a960acb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-201325643627614567909079", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7ca8eef4-4b2e-437b-9ac9-07252a960acb", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-201325643627614567909079", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7ca8eef4-4b2e-437b-9ac9-07252a960acb" ] + }, + "id" : "urn:uuid:a1626d8e-83f9-451c-9d1d-a3d583c771d1" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", + "childItems" : [ { + "catenaXId" : "urn:uuid:8d8f640e-d50a-4275-be7e-c107465a4082", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:40f15c89-adee-4916-9641-817309306f70", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8f3b91ba-55c4-4e94-86bd-5968a8b8749d", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-032280413072009654176682", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-032280413072009654176682", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-032280413072009654176682", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380" ] + }, + "id" : "urn:uuid:040875d5-8f32-4fb5-b8a4-ba0fc63e9710" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 43, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 80, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 60, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8d8f640e-d50a-4275-be7e-c107465a4082", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8d8f640e-d50a-4275-be7e-c107465a4082" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "17073R3-46", + "key" : "manufacturerPartId" + }, { + "value" : "NO-311605317768907645448007", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8d8f640e-d50a-4275-be7e-c107465a4082", + "partTypeInformation" : { + "manufacturerPartId" : "17073R3-46", + "customerPartId" : "17073R3-46", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 63, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 32, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:40f15c89-adee-4916-9641-817309306f70", + "childItems" : [ { + "catenaXId" : "urn:uuid:7e8b28f0-8ff2-4dfd-8c19-e2e211d58701", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:40f15c89-adee-4916-9641-817309306f70", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:40f15c89-adee-4916-9641-817309306f70" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "59908C5-10", + "key" : "manufacturerPartId" + }, { + "value" : "NO-669256386214080299559743", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:40f15c89-adee-4916-9641-817309306f70", + "partTypeInformation" : { + "manufacturerPartId" : "59908C5-10", + "customerPartId" : "59908C5-10", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-669256386214080299559743", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "59908C5-10", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:40f15c89-adee-4916-9641-817309306f70" ] + }, + "id" : "urn:uuid:0f017064-6863-4cad-9dff-546c554d2dd8" + } ] + }, { + "catenaXId" : "urn:uuid:7e8b28f0-8ff2-4dfd-8c19-e2e211d58701", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:40f15c89-adee-4916-9641-817309306f70", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7e8b28f0-8ff2-4dfd-8c19-e2e211d58701" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "58717L3-31", + "key" : "manufacturerPartId" + }, { + "value" : "NO-056312636576345536706128", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7e8b28f0-8ff2-4dfd-8c19-e2e211d58701", + "partTypeInformation" : { + "manufacturerPartId" : "58717L3-31", + "customerPartId" : "58717L3-31", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 13, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 6, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f3b91ba-55c4-4e94-86bd-5968a8b8749d", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:8f3b91ba-55c4-4e94-86bd-5968a8b8749d", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8f3b91ba-55c4-4e94-86bd-5968a8b8749d" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "26907V9-93", + "key" : "manufacturerPartId" + }, { + "value" : "NO-003936080115294836043184", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f3b91ba-55c4-4e94-86bd-5968a8b8749d", + "partTypeInformation" : { + "manufacturerPartId" : "26907V9-93", + "customerPartId" : "26907V9-93", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd", + "childItems" : [ { + "catenaXId" : "urn:uuid:14eb3e83-f19d-4b43-9434-9808fbd0df86", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:71b9835c-6bf1-4fcd-8605-f71c3e6806c9", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "55510V2-63", + "key" : "manufacturerPartId" + }, { + "value" : "NO-866437598370205094978103", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd", + "partTypeInformation" : { + "manufacturerPartId" : "55510V2-63", + "customerPartId" : "55510V2-63", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-866437598370205094978103", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "55510V2-63", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd" ] + }, + "id" : "urn:uuid:1d4dbf7f-b852-454f-ab13-eca2dd24069f" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 11, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:14eb3e83-f19d-4b43-9434-9808fbd0df86", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:14eb3e83-f19d-4b43-9434-9808fbd0df86" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "34227T5-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-905922895309143551533454", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:14eb3e83-f19d-4b43-9434-9808fbd0df86", + "partTypeInformation" : { + "manufacturerPartId" : "34227T5-08", + "customerPartId" : "34227T5-08", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 60, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 24, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1", + "childItems" : [ { + "catenaXId" : "urn:uuid:80c5a9a8-a644-4560-bec5-4cbd67cff480", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "87263I9-53", + "key" : "manufacturerPartId" + }, { + "value" : "NO-935191000149724714919251", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1", + "partTypeInformation" : { + "manufacturerPartId" : "87263I9-53", + "customerPartId" : "87263I9-53", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-935191000149724714919251", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "87263I9-53", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1" ] + }, + "id" : "urn:uuid:0ec29550-92cb-4171-a73b-522590759e26" + } ] + }, { + "catenaXId" : "urn:uuid:80c5a9a8-a644-4560-bec5-4cbd67cff480", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:80c5a9a8-a644-4560-bec5-4cbd67cff480" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "03430X9-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-195898027909853803572407", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:80c5a9a8-a644-4560-bec5-4cbd67cff480", + "partTypeInformation" : { + "manufacturerPartId" : "03430X9-50", + "customerPartId" : "03430X9-50", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 60, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 59, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:71b9835c-6bf1-4fcd-8605-f71c3e6806c9", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:71b9835c-6bf1-4fcd-8605-f71c3e6806c9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "52472N6-92", + "key" : "manufacturerPartId" + }, { + "value" : "NO-667643332750224637464517", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:71b9835c-6bf1-4fcd-8605-f71c3e6806c9", + "partTypeInformation" : { + "manufacturerPartId" : "52472N6-92", + "customerPartId" : "52472N6-92", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-667643332750224637464517", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "52472N6-92", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:71b9835c-6bf1-4fcd-8605-f71c3e6806c9" ] + }, + "id" : "urn:uuid:2cda77e2-f107-414a-b30c-3bec8dfc7ee9" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 1, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 58, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "childItems" : [ { + "catenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-810114670414629530763301", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-810114670414629530763301", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708" ] + }, + "id" : "urn:uuid:e6195559-6158-43f0-b373-a71882ea2026" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 40, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 26, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 23, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:42ca4ada-b460-4611-999e-358915788495", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-394566327898449401364936", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-394566327898449401364936", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, + "id" : "urn:uuid:33170cc6-5217-418c-be46-cb1455c15e7f" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 73, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 26, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 39, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-577825412608209519568764", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-577825412608209519568764", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075" ] + }, + "id" : "urn:uuid:0363a931-9396-43cb-a76f-24cb8a314031" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-23T14:48:03.536Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T06:11:55.537Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-531681359535723287104198", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-531681359535723287104198", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1" ] + }, + "id" : "urn:uuid:6077ff06-3952-437a-a685-c7e8050ec153" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-20T01:52:47.548Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T23:01:32.548Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-434160426141999834167235", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-434160426141999834167235", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654" ] + }, + "id" : "urn:uuid:97178ca3-3d94-46e9-9117-7dd94862310b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-05T06:37:09.566Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T10:53:21.566Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:42ca4ada-b460-4611-999e-358915788495", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:42ca4ada-b460-4611-999e-358915788495", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:42ca4ada-b460-4611-999e-358915788495" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-254066388275476325400545", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:42ca4ada-b460-4611-999e-358915788495", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-254066388275476325400545", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:42ca4ada-b460-4611-999e-358915788495" ] + }, + "id" : "urn:uuid:929399a7-3a3c-4c7d-b580-c7b59f30d927" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-12-07T11:45:08.578Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T20:22:39.578Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-218553259950625415953811", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-218553259950625415953811", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9" ] + }, + "id" : "urn:uuid:bf09314f-e630-4c62-a346-0f689b8518d4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-24T18:02:38.587Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T16:59:33.587Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-073811600137601716999302", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-073811600137601716999302", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4" ] + }, + "id" : "urn:uuid:72cbb0cc-cd7e-446b-b75b-1d3ff2cbd6ea" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-01-10T21:16:49.597Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T00:44:59.597Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-469732723040804502200460", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-469732723040804502200460", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da" ] + }, + "id" : "urn:uuid:07f55dbd-62c0-4e41-ab1d-978f2c495a6d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-29T11:35:10.607Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T05:32:15.607Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-794603592362065238220243", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-794603592362065238220243", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967" ] + }, + "id" : "urn:uuid:5925b9a3-796c-47af-865d-f7326bb3c53b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-15T20:36:36.618Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T16:16:09.618Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-890035696334999889216970", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-890035696334999889216970", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b" ] + }, + "id" : "urn:uuid:1919bf92-5283-4f36-a9ad-11ed4f9e9647" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-08-12T14:01:05.628Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T23:00:24.628Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-870095379700081629003910", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-870095379700081629003910", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6" ] + }, + "id" : "urn:uuid:4ff09eef-b578-446f-a965-d1d84f97b71b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-12T03:23:00.639Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T20:53:20.639Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-262599727971167980292337", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-262599727971167980292337", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, + "id" : "urn:uuid:e0459c58-3118-4f68-a9dd-3fbce2e7098e" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 85, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 42, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 48, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-045284841390517034588211", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-045284841390517034588211", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac" ] + }, + "id" : "urn:uuid:5bdedf64-aeab-4eda-85f6-5d965a239a76" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-11-17T13:48:38.660Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T10:48:12.660Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-929369458688301566491991", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-929369458688301566491991", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e" ] + }, + "id" : "urn:uuid:1d7f4c74-415b-4133-b035-aee275f7fc2d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-18T21:46:06.670Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T11:51:06.670Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-746791920687656415035249", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-746791920687656415035249", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8" ] + }, + "id" : "urn:uuid:88d4a703-87a3-4b3d-b8cd-a04c0d7a92bc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-16T11:20:08.679Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T19:52:45.679Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-108232405449050724000717", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-108232405449050724000717", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7" ] + }, + "id" : "urn:uuid:11c2969e-bcbd-4ac3-88b7-a8769e089008" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-04T23:08:27.688Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T06:46:24.688Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-185862801338914788636210", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-185862801338914788636210", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06" ] + }, + "id" : "urn:uuid:10278535-b386-40e0-98fd-76a0711209a7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-18T20:03:34.698Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T00:18:06.698Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-022527009735389337654229", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-022527009735389337654229", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71" ] + }, + "id" : "urn:uuid:b28b728d-66a4-437e-bba2-98637a9e915d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-11-21T13:26:09.710Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T23:56:34.710Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-766778008758118284953989", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-766778008758118284953989", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626" ] + }, + "id" : "urn:uuid:cd513183-c26b-4b58-8be6-663decd6b4cc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-24T06:02:28.721Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T14:56:38.721Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-963930777751243761975967", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-963930777751243761975967", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066" ] + }, + "id" : "urn:uuid:247aa529-931f-451e-9ecc-a985a2375c00" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-06T18:48:39.730Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T06:19:58.730Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-906871386307888677281611", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-906871386307888677281611", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3" ] + }, + "id" : "urn:uuid:e5ba326d-1eb2-4aa9-b895-57003c90fddf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-14T03:45:47.739Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T01:19:45.739Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-722930819180959716383749", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-722930819180959716383749", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91" ] + }, + "id" : "urn:uuid:a0cc884b-76b0-46b4-a120-86715aed4ff8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-06-29T09:09:46.749Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T07:18:00.749Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-991624283682073809413513", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-991624283682073809413513", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, + "id" : "urn:uuid:5673fc6e-6ee1-46b3-9371-c133f2474898" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 86, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 16, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 15, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-649032249703744922338393", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-649032249703744922338393", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c" ] + }, + "id" : "urn:uuid:6979bf41-2bac-4f48-91ad-6d80498d5b9b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-03T09:58:48.768Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T11:25:49.768Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-596570741598502204559866", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-596570741598502204559866", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824" ] + }, + "id" : "urn:uuid:d111a2d8-d010-4057-9885-2e60a225c233" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-12-30T15:07:06.778Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T16:08:36.778Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-614056684217969629535147", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-614056684217969629535147", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32" ] + }, + "id" : "urn:uuid:ad3d20a1-8008-481f-837c-8ed4fb8ada1d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-13T02:26:59.786Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T07:20:16.786Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-760877311612106353321254", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-760877311612106353321254", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4" ] + }, + "id" : "urn:uuid:0f2c900b-c6dc-46a4-ba2e-feedf7d456ed" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-03-30T09:39:07.794Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T00:08:15.794Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-230423682610368650093902", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-230423682610368650093902", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd" ] + }, + "id" : "urn:uuid:18bb88b8-531a-4bd6-b663-6b46a50e7623" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-04T17:54:14.802Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T08:49:48.802Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-323401278795400912331860", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-323401278795400912331860", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927" ] + }, + "id" : "urn:uuid:0e4056ea-6354-44ca-a1e2-2da14cf8a875" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-04-17T03:21:01.811Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T01:22:49.811Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-475742229343268706069418", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-475742229343268706069418", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372" ] + }, + "id" : "urn:uuid:eaceae72-0de3-48ca-b44d-49230e550716" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-02T00:28:36.820Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T21:40:23.820Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-375970740892599433871170", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-375970740892599433871170", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9" ] + }, + "id" : "urn:uuid:396d87f7-5b69-484c-9e29-15789619de31" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-06T17:41:16.829Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T05:43:25.829Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-872225969227615991405127", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-872225969227615991405127", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea" ] + }, + "id" : "urn:uuid:74d8ee00-9d16-4cd7-b3e8-ba838dc8b6dd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-12T23:44:24.837Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T06:23:29.837Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-788828927365512793615850", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-788828927365512793615850", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d" ] + }, + "id" : "urn:uuid:381636a5-db94-44b4-bba0-0d5f3a516500" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-03T20:34:56.847Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T02:57:55.847Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-133257324158144909241717", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-133257324158144909241717", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, + "id" : "urn:uuid:245ae5a9-0a7a-4d08-a68e-fa4578366ea6" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 53, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 13, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 44, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-185212312547218210540702", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-185212312547218210540702", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454" ] + }, + "id" : "urn:uuid:dd79f07f-d55d-49cb-a867-c131c28ee2be" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-08-25T14:16:11.866Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T08:36:31.866Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-202695158026131566415356", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-202695158026131566415356", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c" ] + }, + "id" : "urn:uuid:663beda2-5ac7-4e6b-85b5-6c56e63256bb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-27T17:37:11.875Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T15:53:07.875Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-111065827131826637388247", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-111065827131826637388247", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302" ] + }, + "id" : "urn:uuid:95178598-1d41-43e0-a1f0-5f6f1c482179" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-02-12T07:29:18.884Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T07:50:22.884Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-329039339174035916443955", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-329039339174035916443955", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f" ] + }, + "id" : "urn:uuid:e534baa9-901a-411c-9bfe-5cf89aa7b01b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-01T10:58:54.893Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T10:26:19.893Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-997338973020086872328067", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-997338973020086872328067", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03" ] + }, + "id" : "urn:uuid:192f81f1-2c36-4061-9ffe-1adc0a907e4f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-17T05:54:35.902Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T04:25:52.902Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-836578831412811542301902", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-836578831412811542301902", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f" ] + }, + "id" : "urn:uuid:a4f3954b-9e3e-4e95-a2ef-3a55513300f6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-01-22T06:54:44.911Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T15:33:05.911Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-204364786377701995179138", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-204364786377701995179138", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6" ] + }, + "id" : "urn:uuid:f2112cbd-2b13-4d84-b2ea-dd9ff9f1d80b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-05T20:35:59.921Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T12:26:58.921Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-495853684265078928570449", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-495853684265078928570449", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61" ] + }, + "id" : "urn:uuid:01688e94-a409-4d7a-a1e3-456322145671" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-08T17:56:33.929Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T10:50:17.929Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-022769672378059054645164", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-022769672378059054645164", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93" ] + }, + "id" : "urn:uuid:c7ce0924-c443-4aa3-8ff2-9d7f29b7218d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-02-22T19:25:06.938Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T17:22:19.938Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-999654462072525090580026", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-999654462072525090580026", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18" ] + }, + "id" : "urn:uuid:5147a347-65f9-48e2-8cc1-3bce81f09d54" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-10-29T20:34:39.946Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T17:13:31.946Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:47172491-e327-4aa6-9125-8f037917d412", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-105709984390117753863289", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-105709984390117753863289", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, + "id" : "urn:uuid:49a9daf0-3087-4181-a756-7ce80b144c86" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 61, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 87, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 60, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-270678133003493773100599", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-270678133003493773100599", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4" ] + }, + "id" : "urn:uuid:4828a1ee-a9f0-4e92-b878-522385120106" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-06-04T01:55:17.977Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T17:28:48.977Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-449946650998097917093358", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-449946650998097917093358", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93" ] + }, + "id" : "urn:uuid:7f402dad-82c8-4138-a029-a8fc59db5f52" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-29T07:27:35.003Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T23:18:19.003Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-733452002813361843223303", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-733452002813361843223303", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf" ] + }, + "id" : "urn:uuid:65697449-9cb5-416e-bab8-f00dffe22195" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-02T21:52:51.016Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T03:22:18.016Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-949044483201448490641917", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-949044483201448490641917", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b" ] + }, + "id" : "urn:uuid:26da1fce-0427-4757-8bdb-31479c0d156a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-09T13:51:19.026Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T01:45:34.026Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-088740093880840494477834", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-088740093880840494477834", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1" ] + }, + "id" : "urn:uuid:efd862af-fd44-4c43-b983-525dad0d9cc7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-23T16:58:03.035Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T09:18:11.035Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-879903246956272873263513", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-879903246956272873263513", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d" ] + }, + "id" : "urn:uuid:9c9c264c-e3d9-4fe4-b728-2351ff57d713" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-08-20T17:58:19.045Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T11:53:58.045Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-003813682640181973922021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-003813682640181973922021", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237" ] + }, + "id" : "urn:uuid:955a2692-da33-4658-a461-c90429109956" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-30T19:33:17.055Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T19:10:04.055Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-930001651063606102641511", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-930001651063606102641511", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa" ] + }, + "id" : "urn:uuid:197974d7-6497-4feb-b772-60da38351c60" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-04-08T06:35:34.064Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T06:15:37.064Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:47172491-e327-4aa6-9125-8f037917d412", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:47172491-e327-4aa6-9125-8f037917d412", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:47172491-e327-4aa6-9125-8f037917d412" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-895448592989751602359521", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:47172491-e327-4aa6-9125-8f037917d412", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-895448592989751602359521", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:47172491-e327-4aa6-9125-8f037917d412" ] + }, + "id" : "urn:uuid:809e8c98-dfde-4003-b58e-e7eda4001a4e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-17T03:51:52.074Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T16:53:01.074Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-876047974797398989853430", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-876047974797398989853430", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c" ] + }, + "id" : "urn:uuid:7d0384f4-4441-4034-9cae-58de01732421" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-05-02T07:17:51.083Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T11:20:06.083Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-244073643037115505035823", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-244073643037115505035823", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, + "id" : "urn:uuid:20d200fd-6b9d-4819-bedf-c2ebb10876c5" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 61, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 84, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 46, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-112691353443145395887305", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-112691353443145395887305", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859" ] + }, + "id" : "urn:uuid:4fd8b258-37ba-47ca-a16c-085821dd5a87" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-04-15T20:16:31.103Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T02:30:30.103Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-415323453807239177051899", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-415323453807239177051899", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b" ] + }, + "id" : "urn:uuid:37ac931e-78c4-4bf7-9605-217a7a29657a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-07-24T19:44:19.113Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T09:17:16.113Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-554965275618408540659244", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-554965275618408540659244", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e" ] + }, + "id" : "urn:uuid:3b473e26-21e7-4122-a4be-bdf5cbfaf87d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-20T08:31:08.122Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T05:17:51.122Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-709955656399736142175240", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-709955656399736142175240", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a" ] + }, + "id" : "urn:uuid:4ff2fd4a-9a38-4583-856a-f97a48da441e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-12T21:06:21.131Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T08:23:08.131Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-640612361715094368857426", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-640612361715094368857426", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907" ] + }, + "id" : "urn:uuid:6e561e9e-1205-493a-8e48-aa53d8d626fa" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-01T03:24:48.140Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T18:50:47.140Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-788548784948644302513830", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-788548784948644302513830", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a" ] + }, + "id" : "urn:uuid:74a4f6c4-71a1-4f1c-a032-5550a255d33b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-06-03T21:37:33.148Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T03:54:33.148Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-000487309374730395038211", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-000487309374730395038211", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026" ] + }, + "id" : "urn:uuid:9e918442-cea8-4b5b-8465-4abb3ef7559b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-09-18T13:33:17.158Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T12:05:54.158Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-154201383457570594860162", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-154201383457570594860162", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6" ] + }, + "id" : "urn:uuid:b47c9525-1db2-4bf9-8b8d-b85d9329a85f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-31T10:05:55.167Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T08:13:16.167Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-634791315370599918000825", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-634791315370599918000825", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503" ] + }, + "id" : "urn:uuid:af2ddcf6-c726-4f05-a63f-8fa226ca63f8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-15T14:23:58.177Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T13:56:46.177Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-777708390733844876185603", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-777708390733844876185603", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54" ] + }, + "id" : "urn:uuid:d90391ef-98b9-4ff1-a605-9ba89cfe7614" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-20T05:54:10.186Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T13:49:37.186Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "engine" : { + "size" : 2998, + "power" : 152 + }, + "emptyWeight" : 1.79, + "fuel" : "hybrid petrol/electric", + "vehicleModel" : "Vehicle Hybrid", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "childItems" : [ { + "catenaXId" : "urn:uuid:90f980af-83ab-4731-bcb2-d1283db430fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b88bfa26-d67a-4a06-a117-aaa5581fe5ec", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4e093bf8-70c3-49a1-baf1-e855285f410a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f79d171c-b8a4-443e-aa5e-44b8c4863ff0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:45b546b7-1439-4e53-ba58-4890e9a6a0d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fbb5f81b-56be-4481-9d80-b25bd4255981", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b4a6b10a-3655-47f0-a62e-368c4247e467", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4c74986d-bb70-4e99-ac3e-ef6b6fdfa265", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4f38da4b-eaa0-439c-88ef-19562818501c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:03397882-baee-44bf-abd2-b02a0b4fadc2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3b6b09f4-5f0c-4c7e-8295-e4d2f1564698", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:90757687-04ad-468c-9179-447fe3557e4a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:07cd1020-ad97-4f80-92a5-c865b437d97a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6c803c63-b98f-42ee-ad43-f13c3bd811de", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:50d02bcb-026e-4ba0-8fe8-88b6b4c5b8a0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b57e2439-e94b-4a51-ba7e-e2a17ae5f3a5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fa44f33e-17f8-426f-a050-4f64d343e54d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bbaa8934-0937-468f-99df-27784e6eff4c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9036c8f5-9233-49ec-a927-9f102d25f317", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8e74dfee-938c-493b-9299-1735da3ed6df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c114479a-d9fd-45ff-9f8f-783b6e2a09a3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b335610e-7b85-4a30-8f42-70cdfbda27ec", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c1fda60b-fde2-46c9-80a8-c1a8b5f22eff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:29306b37-b89e-4bf5-9dc2-f92280134aac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:46d192e6-e742-41b3-a469-308db2d964e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8221f659-aaf2-4f65-871c-e7ce58d754f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bd7d3e9e-3f47-43ef-8378-25862a735463", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2168f746-6be1-477a-a66f-fa85ebc1fe7c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7d3ad91-9616-4137-9f16-7e3879ba977c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:948ece07-fc98-419f-b003-c0cf71acf71a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "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" + } ], + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "WN-08", + "key" : "manufacturerPartId" + }, { + "value" : "OMBIKSTRLICICGWAP", + "key" : "partInstanceId" + }, { + "value" : "OMBIKSTRLICICGWAP", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2018-04-17T23:23:44.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "partTypeInformation" : { + "manufacturerPartId" : "WN-08", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Hybrid" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMBIKSTRLICICGWAP", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "WN-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_hybrid.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Hybrid" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, + "id" : "urn:uuid:3e5b6f7d-9e4b-4ddb-8707-ef9c7897ab05" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 59, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 48, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 80, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 18, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 69, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 31, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 9, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 36, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 47, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 70, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:90f980af-83ab-4731-bcb2-d1283db430fa", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:90f980af-83ab-4731-bcb2-d1283db430fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-654739757465485336162212", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:90f980af-83ab-4731-bcb2-d1283db430fa", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-654739757465485336162212", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:90f980af-83ab-4731-bcb2-d1283db430fa" ] + }, + "id" : "urn:uuid:2b2961de-3662-45fc-bfdb-264ca59114ff" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:b88bfa26-d67a-4a06-a117-aaa5581fe5ec", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b88bfa26-d67a-4a06-a117-aaa5581fe5ec" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-605238927129575115671074", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b88bfa26-d67a-4a06-a117-aaa5581fe5ec", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-605238927129575115671074", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b88bfa26-d67a-4a06-a117-aaa5581fe5ec" ] + }, + "id" : "urn:uuid:00fa0c4b-76cb-4471-80ef-9556a6e4e1c9" + } ] + }, { + "catenaXId" : "urn:uuid:4e093bf8-70c3-49a1-baf1-e855285f410a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4e093bf8-70c3-49a1-baf1-e855285f410a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-700609567662743118495190", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4e093bf8-70c3-49a1-baf1-e855285f410a", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-700609567662743118495190", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4e093bf8-70c3-49a1-baf1-e855285f410a" ] + }, + "id" : "urn:uuid:ceba0253-9f85-4605-bb57-638a0772a73e" + } ] + }, { + "catenaXId" : "urn:uuid:f79d171c-b8a4-443e-aa5e-44b8c4863ff0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f79d171c-b8a4-443e-aa5e-44b8c4863ff0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-794134084893710571612292", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f79d171c-b8a4-443e-aa5e-44b8c4863ff0", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-794134084893710571612292", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f79d171c-b8a4-443e-aa5e-44b8c4863ff0" ] + }, + "id" : "urn:uuid:c6d16b0f-a640-4ade-817e-b8b63043b625" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094", + "childItems" : [ { + "catenaXId" : "urn:uuid:a18fa655-9fa8-43cd-99f7-d1111a95c5bf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-103686304583933184196697", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-103686304583933184196697", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094" ] + }, + "id" : "urn:uuid:3b411309-9c19-4258-8f37-bf41b28f796e" + } ] + }, { + "catenaXId" : "urn:uuid:a18fa655-9fa8-43cd-99f7-d1111a95c5bf", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a18fa655-9fa8-43cd-99f7-d1111a95c5bf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-464877212465250111600327", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a18fa655-9fa8-43cd-99f7-d1111a95c5bf", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-464877212465250111600327", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a18fa655-9fa8-43cd-99f7-d1111a95c5bf" ] + }, + "id" : "urn:uuid:2cca6fe0-daf8-42b9-bee6-1217e3c66368" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c", + "childItems" : [ { + "catenaXId" : "urn:uuid:e12a9218-dc05-4a63-9325-e83a5e59b54a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-219915782736161324503311", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-219915782736161324503311", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c" ] + }, + "id" : "urn:uuid:77648c32-2209-4284-81f4-2e5f618ca076" + } ] + }, { + "catenaXId" : "urn:uuid:e12a9218-dc05-4a63-9325-e83a5e59b54a", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e12a9218-dc05-4a63-9325-e83a5e59b54a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-170248430051159324364398", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e12a9218-dc05-4a63-9325-e83a5e59b54a", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-170248430051159324364398", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e12a9218-dc05-4a63-9325-e83a5e59b54a" ] + }, + "id" : "urn:uuid:1551be95-d759-4652-8679-492a129a3444" + } ] + }, { + "catenaXId" : "urn:uuid:45b546b7-1439-4e53-ba58-4890e9a6a0d3", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:45b546b7-1439-4e53-ba58-4890e9a6a0d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-165006191454387517843160", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:45b546b7-1439-4e53-ba58-4890e9a6a0d3", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-165006191454387517843160", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:45b546b7-1439-4e53-ba58-4890e9a6a0d3" ] + }, + "id" : "urn:uuid:8eb2d746-5aab-4af7-919e-3ce55e10e2bc" + } ] + }, { + "catenaXId" : "urn:uuid:fbb5f81b-56be-4481-9d80-b25bd4255981", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fbb5f81b-56be-4481-9d80-b25bd4255981" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-728295322515855546578345", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fbb5f81b-56be-4481-9d80-b25bd4255981", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-728295322515855546578345", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fbb5f81b-56be-4481-9d80-b25bd4255981" ] + }, + "id" : "urn:uuid:1f8937e1-97c1-4bdf-b5ac-03c97ec02dbe" + } ] + }, { + "catenaXId" : "urn:uuid:b4a6b10a-3655-47f0-a62e-368c4247e467", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b4a6b10a-3655-47f0-a62e-368c4247e467" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-140178749143318371728965", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b4a6b10a-3655-47f0-a62e-368c4247e467", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-140178749143318371728965", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b4a6b10a-3655-47f0-a62e-368c4247e467" ] + }, + "id" : "urn:uuid:4bdc37d1-fdd8-41ac-93ba-95bfa70a5fc1" + } ] + }, { + "catenaXId" : "urn:uuid:4c74986d-bb70-4e99-ac3e-ef6b6fdfa265", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4c74986d-bb70-4e99-ac3e-ef6b6fdfa265" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-091582812516704046422363", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4c74986d-bb70-4e99-ac3e-ef6b6fdfa265", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-091582812516704046422363", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4c74986d-bb70-4e99-ac3e-ef6b6fdfa265" ] + }, + "id" : "urn:uuid:e8abf7b3-391a-4724-94b4-9d05cf9a5abc" + } ] + }, { + "catenaXId" : "urn:uuid:4f38da4b-eaa0-439c-88ef-19562818501c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f38da4b-eaa0-439c-88ef-19562818501c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-500904034677590030424383", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f38da4b-eaa0-439c-88ef-19562818501c", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-500904034677590030424383", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4f38da4b-eaa0-439c-88ef-19562818501c" ] + }, + "id" : "urn:uuid:1660e7b6-8bad-4deb-a8e4-887646cbc57e" + } ] + }, { + "catenaXId" : "urn:uuid:03397882-baee-44bf-abd2-b02a0b4fadc2", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:03397882-baee-44bf-abd2-b02a0b4fadc2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-716666677760451185100212", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:03397882-baee-44bf-abd2-b02a0b4fadc2", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-716666677760451185100212", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:03397882-baee-44bf-abd2-b02a0b4fadc2" ] + }, + "id" : "urn:uuid:5f7d8218-2dca-4362-94d9-6295c63b63f4" + } ] + }, { + "catenaXId" : "urn:uuid:3b6b09f4-5f0c-4c7e-8295-e4d2f1564698", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3b6b09f4-5f0c-4c7e-8295-e4d2f1564698" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-835010582874470328705736", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3b6b09f4-5f0c-4c7e-8295-e4d2f1564698", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-835010582874470328705736", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3b6b09f4-5f0c-4c7e-8295-e4d2f1564698" ] + }, + "id" : "urn:uuid:8986e230-0b96-4e65-ab4b-a7ae34e39548" + } ] + }, { + "catenaXId" : "urn:uuid:90757687-04ad-468c-9179-447fe3557e4a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:90757687-04ad-468c-9179-447fe3557e4a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-828796416379243752709627", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:90757687-04ad-468c-9179-447fe3557e4a", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-828796416379243752709627", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:90757687-04ad-468c-9179-447fe3557e4a" ] + }, + "id" : "urn:uuid:d97c8f67-7c99-4cc4-a63a-8d916711c4ee" + } ] + }, { + "catenaXId" : "urn:uuid:07cd1020-ad97-4f80-92a5-c865b437d97a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:07cd1020-ad97-4f80-92a5-c865b437d97a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-317362247423888587284039", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:07cd1020-ad97-4f80-92a5-c865b437d97a", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-317362247423888587284039", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:07cd1020-ad97-4f80-92a5-c865b437d97a" ] + }, + "id" : "urn:uuid:29211326-9979-4269-a790-50fa1bd8b44b" + } ] + }, { + "catenaXId" : "urn:uuid:6c803c63-b98f-42ee-ad43-f13c3bd811de", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6c803c63-b98f-42ee-ad43-f13c3bd811de" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-553310357545913577091658", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6c803c63-b98f-42ee-ad43-f13c3bd811de", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-553310357545913577091658", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6c803c63-b98f-42ee-ad43-f13c3bd811de" ] + }, + "id" : "urn:uuid:2947d7f3-bbf1-4b9b-997f-939e83044b4d" + } ] + }, { + "catenaXId" : "urn:uuid:50d02bcb-026e-4ba0-8fe8-88b6b4c5b8a0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:50d02bcb-026e-4ba0-8fe8-88b6b4c5b8a0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-074917985972409716698711", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:50d02bcb-026e-4ba0-8fe8-88b6b4c5b8a0", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-074917985972409716698711", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:50d02bcb-026e-4ba0-8fe8-88b6b4c5b8a0" ] + }, + "id" : "urn:uuid:7f2390f5-5279-46a6-b9ca-18ae191d6f95" + } ] + }, { + "catenaXId" : "urn:uuid:b57e2439-e94b-4a51-ba7e-e2a17ae5f3a5", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b57e2439-e94b-4a51-ba7e-e2a17ae5f3a5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-957421210159531490727329", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b57e2439-e94b-4a51-ba7e-e2a17ae5f3a5", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-957421210159531490727329", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b57e2439-e94b-4a51-ba7e-e2a17ae5f3a5" ] + }, + "id" : "urn:uuid:bda9dc9c-466a-4bfe-b059-3e4f3b605008" + } ] + }, { + "catenaXId" : "urn:uuid:fa44f33e-17f8-426f-a050-4f64d343e54d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fa44f33e-17f8-426f-a050-4f64d343e54d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-409408308452343387960364", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fa44f33e-17f8-426f-a050-4f64d343e54d", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-409408308452343387960364", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fa44f33e-17f8-426f-a050-4f64d343e54d" ] + }, + "id" : "urn:uuid:a52a1ef3-d68b-4a24-9a00-9e8b197f96ed" + } ] + }, { + "catenaXId" : "urn:uuid:bbaa8934-0937-468f-99df-27784e6eff4c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bbaa8934-0937-468f-99df-27784e6eff4c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-349871747238099367206098", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bbaa8934-0937-468f-99df-27784e6eff4c", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-349871747238099367206098", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bbaa8934-0937-468f-99df-27784e6eff4c" ] + }, + "id" : "urn:uuid:bd0191a2-cfe2-482a-ba65-f6c8f5789d5c" + } ] + }, { + "catenaXId" : "urn:uuid:9036c8f5-9233-49ec-a927-9f102d25f317", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9036c8f5-9233-49ec-a927-9f102d25f317" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-182488768418327266638742", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9036c8f5-9233-49ec-a927-9f102d25f317", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-182488768418327266638742", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9036c8f5-9233-49ec-a927-9f102d25f317" ] + }, + "id" : "urn:uuid:726980f2-e722-4121-8d46-9f6b0deac28c" + } ] + }, { + "catenaXId" : "urn:uuid:8e74dfee-938c-493b-9299-1735da3ed6df", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8e74dfee-938c-493b-9299-1735da3ed6df" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-784779612483501083755057", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8e74dfee-938c-493b-9299-1735da3ed6df", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-784779612483501083755057", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8e74dfee-938c-493b-9299-1735da3ed6df" ] + }, + "id" : "urn:uuid:f8a9b406-e76d-4068-89b6-368f481016b3" + } ] + }, { + "catenaXId" : "urn:uuid:c114479a-d9fd-45ff-9f8f-783b6e2a09a3", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c114479a-d9fd-45ff-9f8f-783b6e2a09a3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-688759889773885151479712", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c114479a-d9fd-45ff-9f8f-783b6e2a09a3", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-688759889773885151479712", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c114479a-d9fd-45ff-9f8f-783b6e2a09a3" ] + }, + "id" : "urn:uuid:92e0a716-471d-40d1-b8ce-d644197ed313" + } ] + }, { + "catenaXId" : "urn:uuid:b335610e-7b85-4a30-8f42-70cdfbda27ec", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b335610e-7b85-4a30-8f42-70cdfbda27ec" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-899192860833080677392280", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b335610e-7b85-4a30-8f42-70cdfbda27ec", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-899192860833080677392280", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b335610e-7b85-4a30-8f42-70cdfbda27ec" ] + }, + "id" : "urn:uuid:862ea183-517e-43b4-b7d6-559d3f496baa" + } ] + }, { + "catenaXId" : "urn:uuid:c1fda60b-fde2-46c9-80a8-c1a8b5f22eff", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c1fda60b-fde2-46c9-80a8-c1a8b5f22eff" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-028920601050047456765005", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c1fda60b-fde2-46c9-80a8-c1a8b5f22eff", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-028920601050047456765005", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c1fda60b-fde2-46c9-80a8-c1a8b5f22eff" ] + }, + "id" : "urn:uuid:cae65982-71ad-4306-bb83-1c978d4e6b5d" + } ] + }, { + "catenaXId" : "urn:uuid:29306b37-b89e-4bf5-9dc2-f92280134aac", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:29306b37-b89e-4bf5-9dc2-f92280134aac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-166535093715457616527079", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:29306b37-b89e-4bf5-9dc2-f92280134aac", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-166535093715457616527079", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:29306b37-b89e-4bf5-9dc2-f92280134aac" ] + }, + "id" : "urn:uuid:09dece42-2e90-4cf5-ba75-fbca707f4738" + } ] + }, { + "catenaXId" : "urn:uuid:46d192e6-e742-41b3-a469-308db2d964e8", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:46d192e6-e742-41b3-a469-308db2d964e8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-059045123507241656528844", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:46d192e6-e742-41b3-a469-308db2d964e8", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-059045123507241656528844", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:46d192e6-e742-41b3-a469-308db2d964e8" ] + }, + "id" : "urn:uuid:19fcb670-2a50-4405-b833-9e444c669a8d" + } ] + }, { + "catenaXId" : "urn:uuid:8221f659-aaf2-4f65-871c-e7ce58d754f4", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8221f659-aaf2-4f65-871c-e7ce58d754f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-479693426075822570946868", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8221f659-aaf2-4f65-871c-e7ce58d754f4", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-479693426075822570946868", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8221f659-aaf2-4f65-871c-e7ce58d754f4" ] + }, + "id" : "urn:uuid:ae94672c-364b-4ea1-872d-e4fa91175fbe" + } ] + }, { + "catenaXId" : "urn:uuid:bd7d3e9e-3f47-43ef-8378-25862a735463", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bd7d3e9e-3f47-43ef-8378-25862a735463" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-314107870694423303880405", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bd7d3e9e-3f47-43ef-8378-25862a735463", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-314107870694423303880405", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bd7d3e9e-3f47-43ef-8378-25862a735463" ] + }, + "id" : "urn:uuid:9e715f68-4db6-4fc2-96dc-af7af46b00df" + } ] + }, { + "catenaXId" : "urn:uuid:2168f746-6be1-477a-a66f-fa85ebc1fe7c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2168f746-6be1-477a-a66f-fa85ebc1fe7c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-732713401999101381348402", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2168f746-6be1-477a-a66f-fa85ebc1fe7c", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-732713401999101381348402", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2168f746-6be1-477a-a66f-fa85ebc1fe7c" ] + }, + "id" : "urn:uuid:25ad2945-c246-4bc9-b329-216a221f1830" + } ] + }, { + "catenaXId" : "urn:uuid:f7d3ad91-9616-4137-9f16-7e3879ba977c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f7d3ad91-9616-4137-9f16-7e3879ba977c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-564340843800944506854306", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f7d3ad91-9616-4137-9f16-7e3879ba977c", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-564340843800944506854306", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f7d3ad91-9616-4137-9f16-7e3879ba977c" ] + }, + "id" : "urn:uuid:d5c38b72-c29c-4fd3-aefb-a02eb68763ef" + } ] + }, { + "catenaXId" : "urn:uuid:948ece07-fc98-419f-b003-c0cf71acf71a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:948ece07-fc98-419f-b003-c0cf71acf71a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-429928868546725249947835", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:948ece07-fc98-419f-b003-c0cf71acf71a", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-429928868546725249947835", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:948ece07-fc98-419f-b003-c0cf71acf71a" ] + }, + "id" : "urn:uuid:01272fd1-848d-4d5e-8f20-74797ab7c69f" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", + "childItems" : [ { + "catenaXId" : "urn:uuid:040526f6-0df2-4673-b748-f9fc51c970c1", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1dd27ae1-5098-4abf-ab2b-e662510b4a1b", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-478881417262651689451946", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-478881417262651689451946", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-478881417262651689451946", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4" ] + }, + "id" : "urn:uuid:f473f9a5-50a8-4bf8-9790-c86f2bcf4d7a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 27, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 68, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 21, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:040526f6-0df2-4673-b748-f9fc51c970c1", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:040526f6-0df2-4673-b748-f9fc51c970c1" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "18273G8-07", + "key" : "manufacturerPartId" + }, { + "value" : "NO-217620924410682894006340", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:040526f6-0df2-4673-b748-f9fc51c970c1", + "partTypeInformation" : { + "manufacturerPartId" : "18273G8-07", + "customerPartId" : "18273G8-07", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 89, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 80, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4", + "childItems" : [ { + "catenaXId" : "urn:uuid:ed88ebdf-8b6d-4b48-926f-0240ca818fb3", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "84863G7-41", + "key" : "manufacturerPartId" + }, { + "value" : "NO-302649594461754319355026", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4", + "partTypeInformation" : { + "manufacturerPartId" : "84863G7-41", + "customerPartId" : "84863G7-41", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-302649594461754319355026", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "84863G7-41", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4" ] + }, + "id" : "urn:uuid:6543bef6-eedf-4512-b4e8-e6292166d71a" + } ] + }, { + "catenaXId" : "urn:uuid:ed88ebdf-8b6d-4b48-926f-0240ca818fb3", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ed88ebdf-8b6d-4b48-926f-0240ca818fb3" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "41855Y7-84", + "key" : "manufacturerPartId" + }, { + "value" : "NO-652377548686410359063642", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ed88ebdf-8b6d-4b48-926f-0240ca818fb3", + "partTypeInformation" : { + "manufacturerPartId" : "41855Y7-84", + "customerPartId" : "41855Y7-84", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 86, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 1, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1dd27ae1-5098-4abf-ab2b-e662510b4a1b", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:1dd27ae1-5098-4abf-ab2b-e662510b4a1b", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1dd27ae1-5098-4abf-ab2b-e662510b4a1b" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "54541I7-95", + "key" : "manufacturerPartId" + }, { + "value" : "NO-782726239686771500930247", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1dd27ae1-5098-4abf-ab2b-e662510b4a1b", + "partTypeInformation" : { + "manufacturerPartId" : "54541I7-95", + "customerPartId" : "54541I7-95", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b", + "childItems" : [ { + "catenaXId" : "urn:uuid:ca19e348-1f4e-45c6-a08f-00673fe0deab", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:69ee185f-23dd-4dbb-b630-3be4dc4bce88", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "68269J8-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-742826629648845175190010", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b", + "partTypeInformation" : { + "manufacturerPartId" : "68269J8-48", + "customerPartId" : "68269J8-48", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-742826629648845175190010", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "68269J8-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b" ] + }, + "id" : "urn:uuid:b8711422-3258-479e-88bc-c9a51f24a2bc" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 24, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:ca19e348-1f4e-45c6-a08f-00673fe0deab", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ca19e348-1f4e-45c6-a08f-00673fe0deab" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "82826S9-78", + "key" : "manufacturerPartId" + }, { + "value" : "NO-908345777082838791096432", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca19e348-1f4e-45c6-a08f-00673fe0deab", + "partTypeInformation" : { + "manufacturerPartId" : "82826S9-78", + "customerPartId" : "82826S9-78", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 82, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 42, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e", + "childItems" : [ { + "catenaXId" : "urn:uuid:7c483880-aa69-4bbf-811e-f96ae0f1e3ea", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "81386D5-36", + "key" : "manufacturerPartId" + }, { + "value" : "NO-538029369233908295142623", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e", + "partTypeInformation" : { + "manufacturerPartId" : "81386D5-36", + "customerPartId" : "81386D5-36", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-538029369233908295142623", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81386D5-36", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e" ] + }, + "id" : "urn:uuid:88c6bde7-e74b-4230-b12e-5866ed9d3f58" + } ] + }, { + "catenaXId" : "urn:uuid:7c483880-aa69-4bbf-811e-f96ae0f1e3ea", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7c483880-aa69-4bbf-811e-f96ae0f1e3ea" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "11711W7-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-162442635652687124259500", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7c483880-aa69-4bbf-811e-f96ae0f1e3ea", + "partTypeInformation" : { + "manufacturerPartId" : "11711W7-75", + "customerPartId" : "11711W7-75", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 1, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 38, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:69ee185f-23dd-4dbb-b630-3be4dc4bce88", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:69ee185f-23dd-4dbb-b630-3be4dc4bce88" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "80045C2-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-191224091092959379796062", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:69ee185f-23dd-4dbb-b630-3be4dc4bce88", + "partTypeInformation" : { + "manufacturerPartId" : "80045C2-82", + "customerPartId" : "80045C2-82", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-191224091092959379796062", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "80045C2-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:69ee185f-23dd-4dbb-b630-3be4dc4bce88" ] + }, + "id" : "urn:uuid:5e6c1fd3-1b1e-41bd-8277-545893917423" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 43, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 2, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "childItems" : [ { + "catenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-113534916063653766833921", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-113534916063653766833921", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361" ] + }, + "id" : "urn:uuid:06b06c0a-6c7f-48e4-9ab2-cd98896ebab6" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 63, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 55, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 12, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:36682599-1346-471d-aec9-a65102611bf6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-044955378018690641795803", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-044955378018690641795803", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, + "id" : "urn:uuid:39a9099c-e9e9-4d60-a9e0-b525b12ad733" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 5, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 17, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 30, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-839285491472867595243758", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-839285491472867595243758", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1" ] + }, + "id" : "urn:uuid:df095efc-b330-41b4-a957-aabd07920f30" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-11T02:12:10.344Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T06:56:53.344Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-622063895411683509701021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-622063895411683509701021", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39" ] + }, + "id" : "urn:uuid:121cbb34-2f49-48ad-9049-3f0f05570130" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-06T09:00:39.354Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T22:06:15.354Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-260699683015437222378645", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-260699683015437222378645", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f" ] + }, + "id" : "urn:uuid:ecc5a16e-eda0-491e-a84f-98d5912061a3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-02-02T22:27:38.363Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T04:25:27.363Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-224253049703371827702051", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-224253049703371827702051", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2" ] + }, + "id" : "urn:uuid:f4abee10-53eb-4186-9720-6851af308b36" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-22T02:21:10.372Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T05:16:38.372Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-677515827480632179103150", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-677515827480632179103150", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a" ] + }, + "id" : "urn:uuid:3195d006-e580-41b2-89f2-5dc2f0dc5ca6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-02-23T22:13:15.381Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T01:55:31.381Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-769909609755370708434572", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-769909609755370708434572", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00" ] + }, + "id" : "urn:uuid:4e768819-cc48-4895-9279-9aefc6db0cac" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-02T00:47:51.390Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T14:44:04.390Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-038077718338478799153835", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-038077718338478799153835", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba" ] + }, + "id" : "urn:uuid:08b99967-29e9-43ab-ae83-28cdc4482712" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-16T09:22:54.399Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T15:10:11.399Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-412202298827306436186472", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-412202298827306436186472", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d" ] + }, + "id" : "urn:uuid:a2d3f01e-2bf3-4f1c-928e-94eb83270362" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-11T10:51:36.409Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T21:29:32.409Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-208225857615545849496529", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-208225857615545849496529", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357" ] + }, + "id" : "urn:uuid:b5c3d1ff-9691-43f1-a5fe-cdafc43332e4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-03-02T09:17:51.419Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T13:33:36.419Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:36682599-1346-471d-aec9-a65102611bf6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:36682599-1346-471d-aec9-a65102611bf6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:36682599-1346-471d-aec9-a65102611bf6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-967153392080543040298597", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:36682599-1346-471d-aec9-a65102611bf6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-967153392080543040298597", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:36682599-1346-471d-aec9-a65102611bf6" ] + }, + "id" : "urn:uuid:47fcec70-b576-42a3-80f7-3ee970cc52d8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-07-27T20:01:49.430Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T08:04:59.430Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-630481077387098197597506", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-630481077387098197597506", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, + "id" : "urn:uuid:98e60e0e-e81c-4350-befd-d79ed2ddc786" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 62, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 8, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 33, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-947206332165558533178289", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-947206332165558533178289", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377" ] + }, + "id" : "urn:uuid:7403382e-6c05-4cf0-8fa9-f0c90b35c64e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-12-06T12:10:06.453Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T03:47:05.453Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-450906135799825279241546", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-450906135799825279241546", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88" ] + }, + "id" : "urn:uuid:ce68b3bf-254f-4937-976c-c02aef1055d2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-20T03:03:47.463Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T12:35:14.463Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-191843433087343427740362", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-191843433087343427740362", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f" ] + }, + "id" : "urn:uuid:8ff36486-d39d-474e-989b-2835288b9b90" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-14T22:09:30.473Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T11:43:54.473Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-981401547092614894898549", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-981401547092614894898549", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696" ] + }, + "id" : "urn:uuid:1b5d3978-812b-46e9-abed-b498bf872fbd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-19T20:31:52.482Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T21:28:22.482Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-453960444479960648634174", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-453960444479960648634174", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e" ] + }, + "id" : "urn:uuid:7cd2b1d6-8f56-4e22-a0b0-80a239ca1007" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-01-27T22:59:28.492Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T09:57:11.492Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-710020836858216747018927", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-710020836858216747018927", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965" ] + }, + "id" : "urn:uuid:e631ef18-c585-4f8a-a7ca-28be47818f1e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-03T11:20:33.501Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T02:11:41.501Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-598330138606216179440579", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-598330138606216179440579", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486" ] + }, + "id" : "urn:uuid:31f87930-459e-474d-abdd-b13ee6ac554f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-08T18:11:50.513Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T18:13:20.513Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-546177561790179645634908", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-546177561790179645634908", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c" ] + }, + "id" : "urn:uuid:88bfe121-339d-43e7-afe3-b4f3e8af192b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-06-26T12:36:50.524Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T12:32:49.524Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-697514269669669051126569", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-697514269669669051126569", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4" ] + }, + "id" : "urn:uuid:d1454cca-3097-4b3c-8bfb-dde5bfe8fe81" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-01T16:10:56.534Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T05:12:23.534Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-219279155232341748218270", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-219279155232341748218270", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3" ] + }, + "id" : "urn:uuid:88cf55b3-8c6d-4d5a-bc55-357c35e506e9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-13T05:42:35.544Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T00:13:18.544Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-809090078437916834875952", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-809090078437916834875952", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, + "id" : "urn:uuid:aa0336a6-c0ff-4363-82cb-f05986a73ad9" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 46, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 58, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 36, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-223552347898630830398746", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-223552347898630830398746", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b" ] + }, + "id" : "urn:uuid:199ca44c-8aa9-4911-ab57-ee1b5e18fb32" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-11T02:31:51.563Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T18:19:56.563Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-678576164715383596265212", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-678576164715383596265212", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1" ] + }, + "id" : "urn:uuid:1b0983d0-08ca-412d-b98f-206068085a8d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-09T10:01:20.573Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T18:00:22.573Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-812180351893475722768882", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-812180351893475722768882", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068" ] + }, + "id" : "urn:uuid:b3eec10f-1d38-4b87-9eea-815c3ff09ec1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-29T07:13:59.583Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T17:47:18.583Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-186357010114008748062349", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-186357010114008748062349", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2" ] + }, + "id" : "urn:uuid:3d6a77d2-ba33-426f-94a4-10f457fe219e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-25T01:29:53.593Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T04:22:38.593Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-447831942513565205802233", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-447831942513565205802233", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84" ] + }, + "id" : "urn:uuid:48568e80-dce5-422c-bd89-a1c0a402b50b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-21T11:49:38.601Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T23:38:56.601Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-829596865135833003628608", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-829596865135833003628608", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc" ] + }, + "id" : "urn:uuid:27b94eeb-14e9-4355-ab1c-0050a2bc975c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-19T15:16:18.610Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T10:14:31.610Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-186577119950201585222329", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-186577119950201585222329", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b" ] + }, + "id" : "urn:uuid:867111c8-b691-4d1c-9834-85ea27f13d4c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-03-22T11:39:20.619Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T22:25:44.619Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-058201436610628865777797", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-058201436610628865777797", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66" ] + }, + "id" : "urn:uuid:b67027eb-2602-41b7-8b1e-fd9df9aaf467" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-12-06T02:30:57.628Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T15:27:04.628Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-163344003961185048306300", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-163344003961185048306300", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55" ] + }, + "id" : "urn:uuid:1ac18b72-688c-443a-b774-09c7feec152e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-21T10:10:37.636Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T18:48:11.636Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-387228241858056913684299", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-387228241858056913684299", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876" ] + }, + "id" : "urn:uuid:031d7b10-5848-454e-bbe1-51041b4b37a2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-25T18:07:45.645Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T18:27:34.645Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-823550817369017971917371", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-823550817369017971917371", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, + "id" : "urn:uuid:d8893b7b-277b-4c76-addf-50ce2a73acb7" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 37, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 49, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 56, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-694429475007684594503894", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-694429475007684594503894", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567" ] + }, + "id" : "urn:uuid:ba8c68ea-76d8-4dca-81b1-451409432c58" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-11T22:52:02.663Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T07:22:42.663Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-109143188239533005017756", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-109143188239533005017756", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac" ] + }, + "id" : "urn:uuid:676208d2-967e-4369-bb7b-ba23e9f7b49f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-13T14:42:09.674Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T12:23:32.674Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-266815833276958274376851", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-266815833276958274376851", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536" ] + }, + "id" : "urn:uuid:16257582-0e8c-446b-9722-83293bc99c0f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-17T04:10:06.684Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T08:41:01.684Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-669153692388880144878260", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-669153692388880144878260", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62" ] + }, + "id" : "urn:uuid:44cac141-f419-4484-af2a-b28d37e395b6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-14T14:38:38.694Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T16:51:48.694Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-238367973671265470729226", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-238367973671265470729226", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2" ] + }, + "id" : "urn:uuid:bc123c90-4621-494b-b93f-a68d94209a0a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-13T11:15:31.705Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T08:33:30.705Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-906648358060421087083688", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-906648358060421087083688", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269" ] + }, + "id" : "urn:uuid:ce8e73b1-f08b-404c-a92c-d570c088424b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-02T16:40:18.722Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T16:16:44.722Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-375523936945946292459243", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-375523936945946292459243", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4" ] + }, + "id" : "urn:uuid:979d6c42-6508-4e84-96ee-54205090bee2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-25T06:01:27.732Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T16:03:31.733Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-525564441407981425872926", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-525564441407981425872926", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0" ] + }, + "id" : "urn:uuid:0411bf0b-d4e6-4e80-a8d1-a47e9d3e1f0d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-07-21T13:01:16.743Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T12:31:02.743Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-143371688893188392056936", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-143371688893188392056936", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3" ] + }, + "id" : "urn:uuid:4583248d-ee97-4ffc-9931-598ac748af2b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-24T19:28:15.755Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T20:15:48.755Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-337652975594510776652072", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-337652975594510776652072", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a" ] + }, + "id" : "urn:uuid:e5a80623-598c-423a-9a44-edd9c7c4cc1b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-13T11:55:58.766Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T20:05:51.766Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-769906166654099150529124", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-769906166654099150529124", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, + "id" : "urn:uuid:3125f314-1424-4bd0-9007-ef813054ec77" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 48, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 51, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 44, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-713556946710632406319690", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-713556946710632406319690", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187" ] + }, + "id" : "urn:uuid:4d9c6a0d-fde4-4052-bcfb-d6a6cd27b387" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-19T13:40:35.788Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T06:27:21.788Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-290073600345033326315610", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-290073600345033326315610", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b" ] + }, + "id" : "urn:uuid:5e5dc198-a7b8-43ac-a2ec-bcec626830a0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-22T20:55:43.798Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T23:34:15.798Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-179560307844875546482166", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-179560307844875546482166", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1" ] + }, + "id" : "urn:uuid:317b0407-7ddf-4ccf-8691-a928b4e1ba7a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-10-23T19:59:16.807Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T20:53:36.807Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-208443680557616988621166", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-208443680557616988621166", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554" ] + }, + "id" : "urn:uuid:56e69d9d-4b1d-4970-9472-352a9787030a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-06-27T22:51:48.816Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T06:55:22.816Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-140789872036157161958728", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-140789872036157161958728", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc" ] + }, + "id" : "urn:uuid:6cafcbc7-254b-4e7e-b275-ad5f5a12da42" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-12T08:49:15.825Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T08:42:11.825Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-522097335635249121742138", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-522097335635249121742138", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6" ] + }, + "id" : "urn:uuid:ae309058-b0b8-4528-b58b-76a87bac9695" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-08-22T11:39:06.833Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T11:54:07.833Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-488682676771259215933950", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-488682676771259215933950", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3" ] + }, + "id" : "urn:uuid:1cf5f8cd-2de8-4b13-be8e-2a318709fa8e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-23T00:53:23.842Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T00:29:55.842Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-827596177806136490158069", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-827596177806136490158069", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533" ] + }, + "id" : "urn:uuid:7a62b362-be7e-48d1-94d8-3f8a803378e5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-05-15T06:23:31.851Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T16:08:14.851Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-124255588079541973974904", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-124255588079541973974904", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb" ] + }, + "id" : "urn:uuid:6c463727-db00-4da6-8d0f-e6e5cf18b1b8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-01-12T07:39:48.859Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T18:01:51.859Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-728064027393631687660260", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-728064027393631687660260", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3" ] + }, + "id" : "urn:uuid:9a3f5158-130e-4a17-81b2-abd14311e8d1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-02-17T13:31:13.868Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T01:10:40.868Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-035252568427027752660892", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-035252568427027752660892", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, + "id" : "urn:uuid:eb694758-a0ce-4388-b6a1-85bc501004a5" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 13, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 53, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 51, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-541224463813413486364649", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-541224463813413486364649", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912" ] + }, + "id" : "urn:uuid:890d4b43-1163-4fe5-924e-5d55deedfda0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-26T18:30:31.887Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T18:11:14.887Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-995235373189010602461857", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-995235373189010602461857", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525" ] + }, + "id" : "urn:uuid:ef3f199e-8fa4-44cf-89f6-26740e2cc9fc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-10T18:54:46.896Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T20:14:34.896Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-775872231579404230600504", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-775872231579404230600504", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d" ] + }, + "id" : "urn:uuid:930f48f5-4b5b-4853-ac97-ed03528889d4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-19T13:23:26.905Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T22:36:12.905Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-861161455382469203263560", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-861161455382469203263560", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b" ] + }, + "id" : "urn:uuid:a914a508-97b6-465a-890d-75f44e4a10b0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-02-21T14:57:26.914Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T01:21:52.914Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-002912437336613200652985", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-002912437336613200652985", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6" ] + }, + "id" : "urn:uuid:6ef4b02c-ee6a-4a3b-b903-bdb44c26173b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-02-14T19:02:06.924Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T12:51:02.924Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-694929962289048186947827", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-694929962289048186947827", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161" ] + }, + "id" : "urn:uuid:1ec4f474-fbc8-455f-97ee-03108c45ffed" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-01T21:28:18.933Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T05:17:33.933Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-861098924199510643489045", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-861098924199510643489045", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1" ] + }, + "id" : "urn:uuid:65172287-6457-4b83-8d75-d78244b42b67" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-14T15:29:30.941Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T13:47:30.942Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-815945023093770966537415", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-815945023093770966537415", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1" ] + }, + "id" : "urn:uuid:532ce58a-cc44-47c1-95e5-c7aa5cf7cc95" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-13T15:28:22.950Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T12:07:38.950Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-891831348954760421101328", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-891831348954760421101328", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f" ] + }, + "id" : "urn:uuid:bf5ff09d-09ec-4d0e-9c99-2aa0a96e9b8f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-01T12:34:44.959Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T09:28:45.959Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-282827779945358659974711", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-282827779945358659974711", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2" ] + }, + "id" : "urn:uuid:fafb2997-30d8-4ea8-8eb4-77d937d67952" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-04-22T10:32:04.968Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T21:41:07.968Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "engine" : { + "size" : 2998, + "power" : 152 + }, + "emptyWeight" : 1.79, + "fuel" : "hybrid petrol/electric", + "vehicleModel" : "Vehicle Hybrid", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "childItems" : [ { + "catenaXId" : "urn:uuid:78c2eb8f-8dcb-4e4b-9608-4acc3c2c8f1a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e8140097-8115-450d-96c4-f2c45c26f68c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c81f3e88-bb0c-4dc8-8a43-3f62e5511ef2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8feb8396-e23f-40ec-ad31-a6446e7006e1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:838ecbb3-28d4-443c-a29a-2762b7b5db69", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:88101ce2-7b64-4d82-94cc-936da164c68c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:346b84a6-6d68-4941-85b2-3941bf381e9b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:261f4b4b-4b37-4b55-be17-738a37208dc5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:346ad14a-6789-4ed2-bc63-df1b61cf58df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a1ec5b43-5f4c-459e-80e3-195a97a10e44", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8fe4d000-a3c7-4aa9-9a71-f4170a0b0bbb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e178e76e-b1f2-43a9-b8ba-20ae9de8b348", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:28ba248d-6cb2-46d2-8b51-39513f2e104f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:357f45ab-37ff-4baf-83ef-ac27a9954f1f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:40848641-e38f-4958-b0b5-bc6ca13a35f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c0b2c683-081e-424d-a050-a25a358a2b2b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:472b88a6-a6e6-42f4-96d1-af5ea480e429", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6032a5f1-2ed1-46bf-bac0-8f8c57f9fed5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e59b2f5a-51c6-4abf-90f5-c026cc395c56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8cf304b0-4e83-45e6-abd9-9862a574142f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cc7e66f4-26f8-4fc4-bc77-905d63b5cb2e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a80434e0-09f5-43bc-ba17-2bf0fc426548", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4f33e9dd-2d42-4c46-8305-665ab106f13a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:512bff1f-36db-4fff-b2ff-ff1d3d49f0a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:80a6df34-1f60-4ffd-8c04-ccd7267af32a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2713ac59-4bdc-45e5-9ad4-0a48382a2a14", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ffcd2e31-f787-4f28-824e-e682a33ee33d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7b15e05e-e290-4be3-af99-defd93a457ad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dcf5ee0d-914a-4c38-8490-1273d917bdff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5c1745f9-49da-4372-8e56-c471eb1dba10", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "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" + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "VJ-89", + "key" : "manufacturerPartId" + }, { + "value" : "OMCMYQRSIGQEVSEVU", + "key" : "partInstanceId" + }, { + "value" : "OMCMYQRSIGQEVSEVU", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2015-03-13T08:17:27.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "partTypeInformation" : { + "manufacturerPartId" : "VJ-89", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Hybrid" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCMYQRSIGQEVSEVU", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "VJ-89", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_hybrid.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Hybrid" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, + "id" : "urn:uuid:6a7d2d6f-3755-4655-99d1-9e3d8b19e70a" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 56, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 72, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 12, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 46, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 49, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 65, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 31, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 30, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 87, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 57, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:78c2eb8f-8dcb-4e4b-9608-4acc3c2c8f1a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:78c2eb8f-8dcb-4e4b-9608-4acc3c2c8f1a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-649056552025546833293660", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:78c2eb8f-8dcb-4e4b-9608-4acc3c2c8f1a", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-649056552025546833293660", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:78c2eb8f-8dcb-4e4b-9608-4acc3c2c8f1a" ] + }, + "id" : "urn:uuid:9c263267-c90a-40c6-af2f-bc61776f134c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:e8140097-8115-450d-96c4-f2c45c26f68c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e8140097-8115-450d-96c4-f2c45c26f68c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-839801404794214214439856", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e8140097-8115-450d-96c4-f2c45c26f68c", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-839801404794214214439856", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e8140097-8115-450d-96c4-f2c45c26f68c" ] + }, + "id" : "urn:uuid:4d52b9a3-5f13-4448-8b09-4e09e35e869d" + } ] + }, { + "catenaXId" : "urn:uuid:c81f3e88-bb0c-4dc8-8a43-3f62e5511ef2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c81f3e88-bb0c-4dc8-8a43-3f62e5511ef2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-036531047298465126660978", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c81f3e88-bb0c-4dc8-8a43-3f62e5511ef2", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-036531047298465126660978", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c81f3e88-bb0c-4dc8-8a43-3f62e5511ef2" ] + }, + "id" : "urn:uuid:c3268845-7e46-4485-95d1-264007028eba" + } ] + }, { + "catenaXId" : "urn:uuid:8feb8396-e23f-40ec-ad31-a6446e7006e1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8feb8396-e23f-40ec-ad31-a6446e7006e1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-125014856455355865485139", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8feb8396-e23f-40ec-ad31-a6446e7006e1", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-125014856455355865485139", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8feb8396-e23f-40ec-ad31-a6446e7006e1" ] + }, + "id" : "urn:uuid:f840c67c-ffe9-485b-95db-20c461562979" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98", + "childItems" : [ { + "catenaXId" : "urn:uuid:849284b0-4259-4ad3-bc58-88c2b15b6cde", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-738570109311965719441059", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-738570109311965719441059", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98" ] + }, + "id" : "urn:uuid:aa995b4b-ad1c-416d-a17b-f8e00364e389" + } ] + }, { + "catenaXId" : "urn:uuid:849284b0-4259-4ad3-bc58-88c2b15b6cde", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:849284b0-4259-4ad3-bc58-88c2b15b6cde" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-646843964343721023785062", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:849284b0-4259-4ad3-bc58-88c2b15b6cde", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-646843964343721023785062", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:849284b0-4259-4ad3-bc58-88c2b15b6cde" ] + }, + "id" : "urn:uuid:a19ba89e-c679-42fd-ad03-1a155dc24726" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ed47271-323b-46e9-a129-9d884bd7e88b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-087100618734695686680142", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-087100618734695686680142", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf" ] + }, + "id" : "urn:uuid:d9c35d4d-9ab0-4de4-90a8-d8804f31da51" + } ] + }, { + "catenaXId" : "urn:uuid:6ed47271-323b-46e9-a129-9d884bd7e88b", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6ed47271-323b-46e9-a129-9d884bd7e88b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-323187867515090294819733", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ed47271-323b-46e9-a129-9d884bd7e88b", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-323187867515090294819733", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6ed47271-323b-46e9-a129-9d884bd7e88b" ] + }, + "id" : "urn:uuid:7ad1aeb3-19c9-4c91-ac75-63e206487241" + } ] + }, { + "catenaXId" : "urn:uuid:838ecbb3-28d4-443c-a29a-2762b7b5db69", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:838ecbb3-28d4-443c-a29a-2762b7b5db69" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-983544759319400761618494", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:838ecbb3-28d4-443c-a29a-2762b7b5db69", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-983544759319400761618494", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:838ecbb3-28d4-443c-a29a-2762b7b5db69" ] + }, + "id" : "urn:uuid:43e4ed9f-2e2d-48c4-a2fb-b6363728ad5f" + } ] + }, { + "catenaXId" : "urn:uuid:88101ce2-7b64-4d82-94cc-936da164c68c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:88101ce2-7b64-4d82-94cc-936da164c68c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-353064512126725735040393", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:88101ce2-7b64-4d82-94cc-936da164c68c", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-353064512126725735040393", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:88101ce2-7b64-4d82-94cc-936da164c68c" ] + }, + "id" : "urn:uuid:24ff037a-49ac-4ef0-886c-5f1f3f8b6e44" + } ] + }, { + "catenaXId" : "urn:uuid:346b84a6-6d68-4941-85b2-3941bf381e9b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:346b84a6-6d68-4941-85b2-3941bf381e9b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-457984269422387682351355", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:346b84a6-6d68-4941-85b2-3941bf381e9b", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-457984269422387682351355", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:346b84a6-6d68-4941-85b2-3941bf381e9b" ] + }, + "id" : "urn:uuid:fde82de8-e1e4-4d0f-be57-e234a658d628" + } ] + }, { + "catenaXId" : "urn:uuid:261f4b4b-4b37-4b55-be17-738a37208dc5", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:261f4b4b-4b37-4b55-be17-738a37208dc5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-873094943718393545212528", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:261f4b4b-4b37-4b55-be17-738a37208dc5", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-873094943718393545212528", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:261f4b4b-4b37-4b55-be17-738a37208dc5" ] + }, + "id" : "urn:uuid:2992fbd8-7848-4a85-b323-de5fe5bec503" + } ] + }, { + "catenaXId" : "urn:uuid:346ad14a-6789-4ed2-bc63-df1b61cf58df", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:346ad14a-6789-4ed2-bc63-df1b61cf58df" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-281931632575750062244901", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:346ad14a-6789-4ed2-bc63-df1b61cf58df", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-281931632575750062244901", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:346ad14a-6789-4ed2-bc63-df1b61cf58df" ] + }, + "id" : "urn:uuid:da164f70-6e80-48a1-a3a7-45deb004b84f" + } ] + }, { + "catenaXId" : "urn:uuid:a1ec5b43-5f4c-459e-80e3-195a97a10e44", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a1ec5b43-5f4c-459e-80e3-195a97a10e44" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-446452131879741183414103", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a1ec5b43-5f4c-459e-80e3-195a97a10e44", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-446452131879741183414103", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a1ec5b43-5f4c-459e-80e3-195a97a10e44" ] + }, + "id" : "urn:uuid:8c7a0260-8a04-47f0-a19e-125c80ac0028" + } ] + }, { + "catenaXId" : "urn:uuid:8fe4d000-a3c7-4aa9-9a71-f4170a0b0bbb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8fe4d000-a3c7-4aa9-9a71-f4170a0b0bbb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-593093442639496993235509", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8fe4d000-a3c7-4aa9-9a71-f4170a0b0bbb", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-593093442639496993235509", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8fe4d000-a3c7-4aa9-9a71-f4170a0b0bbb" ] + }, + "id" : "urn:uuid:9618de79-d65b-4145-81e6-90143577ae40" + } ] + }, { + "catenaXId" : "urn:uuid:e178e76e-b1f2-43a9-b8ba-20ae9de8b348", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e178e76e-b1f2-43a9-b8ba-20ae9de8b348" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-142731676698407021527359", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e178e76e-b1f2-43a9-b8ba-20ae9de8b348", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-142731676698407021527359", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e178e76e-b1f2-43a9-b8ba-20ae9de8b348" ] + }, + "id" : "urn:uuid:9da30912-ef86-4283-a285-280ae96422c3" + } ] + }, { + "catenaXId" : "urn:uuid:28ba248d-6cb2-46d2-8b51-39513f2e104f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:28ba248d-6cb2-46d2-8b51-39513f2e104f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-174321193711271247772277", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:28ba248d-6cb2-46d2-8b51-39513f2e104f", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-174321193711271247772277", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:28ba248d-6cb2-46d2-8b51-39513f2e104f" ] + }, + "id" : "urn:uuid:5fb00d7f-5de9-4e37-8ece-03685022b027" + } ] + }, { + "catenaXId" : "urn:uuid:357f45ab-37ff-4baf-83ef-ac27a9954f1f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:357f45ab-37ff-4baf-83ef-ac27a9954f1f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-429699456168006213273701", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:357f45ab-37ff-4baf-83ef-ac27a9954f1f", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-429699456168006213273701", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:357f45ab-37ff-4baf-83ef-ac27a9954f1f" ] + }, + "id" : "urn:uuid:b2d1af1d-ddab-4678-b093-800cbc9ab626" + } ] + }, { + "catenaXId" : "urn:uuid:40848641-e38f-4958-b0b5-bc6ca13a35f0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:40848641-e38f-4958-b0b5-bc6ca13a35f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-394899147207697411746036", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:40848641-e38f-4958-b0b5-bc6ca13a35f0", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-394899147207697411746036", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:40848641-e38f-4958-b0b5-bc6ca13a35f0" ] + }, + "id" : "urn:uuid:65543c10-1f97-46f7-9ef9-cf270a4ea8ee" + } ] + }, { + "catenaXId" : "urn:uuid:c0b2c683-081e-424d-a050-a25a358a2b2b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c0b2c683-081e-424d-a050-a25a358a2b2b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-789842986984365023272952", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c0b2c683-081e-424d-a050-a25a358a2b2b", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-789842986984365023272952", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c0b2c683-081e-424d-a050-a25a358a2b2b" ] + }, + "id" : "urn:uuid:a78df9ca-c680-4fff-8f3c-485d901d5a00" + } ] + }, { + "catenaXId" : "urn:uuid:472b88a6-a6e6-42f4-96d1-af5ea480e429", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:472b88a6-a6e6-42f4-96d1-af5ea480e429" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-383502280093550677100397", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:472b88a6-a6e6-42f4-96d1-af5ea480e429", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-383502280093550677100397", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:472b88a6-a6e6-42f4-96d1-af5ea480e429" ] + }, + "id" : "urn:uuid:6e8cfb4f-c91c-4a8d-9535-41c45ce6bdd8" + } ] + }, { + "catenaXId" : "urn:uuid:6032a5f1-2ed1-46bf-bac0-8f8c57f9fed5", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6032a5f1-2ed1-46bf-bac0-8f8c57f9fed5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-550543847712479644896292", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6032a5f1-2ed1-46bf-bac0-8f8c57f9fed5", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-550543847712479644896292", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6032a5f1-2ed1-46bf-bac0-8f8c57f9fed5" ] + }, + "id" : "urn:uuid:ea8509c4-0a5f-4aaf-9d15-f5629b133311" + } ] + }, { + "catenaXId" : "urn:uuid:e59b2f5a-51c6-4abf-90f5-c026cc395c56", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e59b2f5a-51c6-4abf-90f5-c026cc395c56" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-564344248974980636836390", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e59b2f5a-51c6-4abf-90f5-c026cc395c56", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-564344248974980636836390", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e59b2f5a-51c6-4abf-90f5-c026cc395c56" ] + }, + "id" : "urn:uuid:21bc5eea-b223-47fc-baae-3643864f832e" + } ] + }, { + "catenaXId" : "urn:uuid:8cf304b0-4e83-45e6-abd9-9862a574142f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8cf304b0-4e83-45e6-abd9-9862a574142f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-929417685680900314815262", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8cf304b0-4e83-45e6-abd9-9862a574142f", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-929417685680900314815262", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8cf304b0-4e83-45e6-abd9-9862a574142f" ] + }, + "id" : "urn:uuid:c406c601-ba66-475d-9486-1c82c9c10e68" + } ] + }, { + "catenaXId" : "urn:uuid:cc7e66f4-26f8-4fc4-bc77-905d63b5cb2e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cc7e66f4-26f8-4fc4-bc77-905d63b5cb2e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-452594276797122930827853", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cc7e66f4-26f8-4fc4-bc77-905d63b5cb2e", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-452594276797122930827853", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cc7e66f4-26f8-4fc4-bc77-905d63b5cb2e" ] + }, + "id" : "urn:uuid:75f3090f-5218-4be6-9e97-c2aef371157b" + } ] + }, { + "catenaXId" : "urn:uuid:a80434e0-09f5-43bc-ba17-2bf0fc426548", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a80434e0-09f5-43bc-ba17-2bf0fc426548" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-749311443948980970044628", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a80434e0-09f5-43bc-ba17-2bf0fc426548", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-749311443948980970044628", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a80434e0-09f5-43bc-ba17-2bf0fc426548" ] + }, + "id" : "urn:uuid:0b1365c4-c84a-4c14-9f63-41dda403bebc" + } ] + }, { + "catenaXId" : "urn:uuid:4f33e9dd-2d42-4c46-8305-665ab106f13a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f33e9dd-2d42-4c46-8305-665ab106f13a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-835874885441997355155001", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f33e9dd-2d42-4c46-8305-665ab106f13a", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-835874885441997355155001", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4f33e9dd-2d42-4c46-8305-665ab106f13a" ] + }, + "id" : "urn:uuid:400fb165-ee6c-4d74-9c67-4e948148dd89" + } ] + }, { + "catenaXId" : "urn:uuid:512bff1f-36db-4fff-b2ff-ff1d3d49f0a7", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:512bff1f-36db-4fff-b2ff-ff1d3d49f0a7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-193324393931787599841214", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:512bff1f-36db-4fff-b2ff-ff1d3d49f0a7", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-193324393931787599841214", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:512bff1f-36db-4fff-b2ff-ff1d3d49f0a7" ] + }, + "id" : "urn:uuid:8e5d8b71-06f0-4d5c-8fb8-b9613b78e6ae" + } ] + }, { + "catenaXId" : "urn:uuid:80a6df34-1f60-4ffd-8c04-ccd7267af32a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:80a6df34-1f60-4ffd-8c04-ccd7267af32a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-983491868939445651885342", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:80a6df34-1f60-4ffd-8c04-ccd7267af32a", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-983491868939445651885342", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:80a6df34-1f60-4ffd-8c04-ccd7267af32a" ] + }, + "id" : "urn:uuid:442916e0-b3c4-4484-a926-b5645f07737a" + } ] + }, { + "catenaXId" : "urn:uuid:2713ac59-4bdc-45e5-9ad4-0a48382a2a14", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2713ac59-4bdc-45e5-9ad4-0a48382a2a14" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-315082819816774608521409", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2713ac59-4bdc-45e5-9ad4-0a48382a2a14", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-315082819816774608521409", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2713ac59-4bdc-45e5-9ad4-0a48382a2a14" ] + }, + "id" : "urn:uuid:10bd6023-a945-4aa8-b3b8-0ad5863bd6cc" + } ] + }, { + "catenaXId" : "urn:uuid:ffcd2e31-f787-4f28-824e-e682a33ee33d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ffcd2e31-f787-4f28-824e-e682a33ee33d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-197171419816288489680254", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ffcd2e31-f787-4f28-824e-e682a33ee33d", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-197171419816288489680254", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ffcd2e31-f787-4f28-824e-e682a33ee33d" ] + }, + "id" : "urn:uuid:0c9bbea9-a038-4ee1-b6bb-6b65e0f23169" + } ] + }, { + "catenaXId" : "urn:uuid:7b15e05e-e290-4be3-af99-defd93a457ad", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7b15e05e-e290-4be3-af99-defd93a457ad" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-839012608787377281648216", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7b15e05e-e290-4be3-af99-defd93a457ad", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-839012608787377281648216", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7b15e05e-e290-4be3-af99-defd93a457ad" ] + }, + "id" : "urn:uuid:9f78b951-749b-456c-835e-26460c609664" + } ] + }, { + "catenaXId" : "urn:uuid:dcf5ee0d-914a-4c38-8490-1273d917bdff", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dcf5ee0d-914a-4c38-8490-1273d917bdff" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-749947934022758704148915", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dcf5ee0d-914a-4c38-8490-1273d917bdff", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-749947934022758704148915", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:dcf5ee0d-914a-4c38-8490-1273d917bdff" ] + }, + "id" : "urn:uuid:830aac0b-8e16-482c-b7a0-c52185ae01c9" + } ] + }, { + "catenaXId" : "urn:uuid:5c1745f9-49da-4372-8e56-c471eb1dba10", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5c1745f9-49da-4372-8e56-c471eb1dba10" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-312190265442718516319630", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5c1745f9-49da-4372-8e56-c471eb1dba10", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-312190265442718516319630", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5c1745f9-49da-4372-8e56-c471eb1dba10" ] + }, + "id" : "urn:uuid:03ef9eab-b53d-4f8e-a9fc-4838c271edc3" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", + "childItems" : [ { + "catenaXId" : "urn:uuid:57fa87d4-95b6-4a25-a267-a1797100a33f", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d3270d6c-060e-48b7-a93f-e487ce6b9b97", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-340681484824543119574114", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-340681484824543119574114", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-340681484824543119574114", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679" ] + }, + "id" : "urn:uuid:ab3a54e3-900f-4b58-b692-dc06695c2716" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 7, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 19, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 56, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:57fa87d4-95b6-4a25-a267-a1797100a33f", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57fa87d4-95b6-4a25-a267-a1797100a33f" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "33222M6-31", + "key" : "manufacturerPartId" + }, { + "value" : "NO-868857482041408996774400", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57fa87d4-95b6-4a25-a267-a1797100a33f", + "partTypeInformation" : { + "manufacturerPartId" : "33222M6-31", + "customerPartId" : "33222M6-31", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 21, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 36, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb", + "childItems" : [ { + "catenaXId" : "urn:uuid:202898f9-33d6-4903-89a7-91b0f4b0d40b", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "42423C5-69", + "key" : "manufacturerPartId" + }, { + "value" : "NO-814602605612772469446198", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb", + "partTypeInformation" : { + "manufacturerPartId" : "42423C5-69", + "customerPartId" : "42423C5-69", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-814602605612772469446198", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "42423C5-69", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb" ] + }, + "id" : "urn:uuid:774c236d-9d72-4196-825a-657d16a9b5af" + } ] + }, { + "catenaXId" : "urn:uuid:202898f9-33d6-4903-89a7-91b0f4b0d40b", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:202898f9-33d6-4903-89a7-91b0f4b0d40b" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "18721Y6-10", + "key" : "manufacturerPartId" + }, { + "value" : "NO-872191831915492969387975", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:202898f9-33d6-4903-89a7-91b0f4b0d40b", + "partTypeInformation" : { + "manufacturerPartId" : "18721Y6-10", + "customerPartId" : "18721Y6-10", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 64, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 16, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d3270d6c-060e-48b7-a93f-e487ce6b9b97", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:d3270d6c-060e-48b7-a93f-e487ce6b9b97", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d3270d6c-060e-48b7-a93f-e487ce6b9b97" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "90464P0-97", + "key" : "manufacturerPartId" + }, { + "value" : "NO-929947130305525641213451", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d3270d6c-060e-48b7-a93f-e487ce6b9b97", + "partTypeInformation" : { + "manufacturerPartId" : "90464P0-97", + "customerPartId" : "90464P0-97", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9ea2e158-ffbd-4b7c-bc09-e58100e33c87", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eed19a7f-6e5f-4b1b-b640-da407dbfe86b", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "75051C4-96", + "key" : "manufacturerPartId" + }, { + "value" : "NO-605438676008927168797200", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a", + "partTypeInformation" : { + "manufacturerPartId" : "75051C4-96", + "customerPartId" : "75051C4-96", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-605438676008927168797200", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "75051C4-96", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a" ] + }, + "id" : "urn:uuid:464a9e63-1c2f-46c1-9cd4-d07dbf11b287" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 49, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9ea2e158-ffbd-4b7c-bc09-e58100e33c87", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9ea2e158-ffbd-4b7c-bc09-e58100e33c87" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "73281V1-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-250625960811665942239519", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9ea2e158-ffbd-4b7c-bc09-e58100e33c87", + "partTypeInformation" : { + "manufacturerPartId" : "73281V1-35", + "customerPartId" : "73281V1-35", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 41, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 21, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a", + "childItems" : [ { + "catenaXId" : "urn:uuid:ebc20d0c-430d-44ba-836f-13edffa434c4", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "80479Y1-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-412095827773081181310417", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a", + "partTypeInformation" : { + "manufacturerPartId" : "80479Y1-50", + "customerPartId" : "80479Y1-50", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-412095827773081181310417", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "80479Y1-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a" ] + }, + "id" : "urn:uuid:18a43c08-422f-49ec-b307-0d8669422e64" + } ] + }, { + "catenaXId" : "urn:uuid:ebc20d0c-430d-44ba-836f-13edffa434c4", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebc20d0c-430d-44ba-836f-13edffa434c4" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "31912R8-20", + "key" : "manufacturerPartId" + }, { + "value" : "NO-859319081511419553800100", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebc20d0c-430d-44ba-836f-13edffa434c4", + "partTypeInformation" : { + "manufacturerPartId" : "31912R8-20", + "customerPartId" : "31912R8-20", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 8, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 87, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:eed19a7f-6e5f-4b1b-b640-da407dbfe86b", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eed19a7f-6e5f-4b1b-b640-da407dbfe86b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "01981Z0-15", + "key" : "manufacturerPartId" + }, { + "value" : "NO-374699561711645762294473", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eed19a7f-6e5f-4b1b-b640-da407dbfe86b", + "partTypeInformation" : { + "manufacturerPartId" : "01981Z0-15", + "customerPartId" : "01981Z0-15", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-374699561711645762294473", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "01981Z0-15", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eed19a7f-6e5f-4b1b-b640-da407dbfe86b" ] + }, + "id" : "urn:uuid:b96395b7-c71b-49a5-995a-f33cc4bdb85a" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 19, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 83, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "childItems" : [ { + "catenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-601872171728675930957786", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-601872171728675930957786", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a" ] + }, + "id" : "urn:uuid:662b4e8e-5182-4a64-8247-8da0521b76c2" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 6, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 76, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 60, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-301973443168698528752489", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-301973443168698528752489", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, + "id" : "urn:uuid:6296d77c-3343-4e79-9c35-7fd6924a9c7a" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 87, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 82, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 72, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-768768489816485878209986", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-768768489816485878209986", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30" ] + }, + "id" : "urn:uuid:818dd82b-9ed5-41a3-9ace-3f0ff97276d7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-06T03:18:18.115Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T09:28:37.115Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-503038542916417859059211", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-503038542916417859059211", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe" ] + }, + "id" : "urn:uuid:2f301a37-1ee9-47da-b0f0-414b1b95ffad" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-01T13:35:54.124Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T14:53:15.124Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-560354665026388238943210", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-560354665026388238943210", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575" ] + }, + "id" : "urn:uuid:4facfdd4-fafb-4c0b-b37b-720031c28fdc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-26T20:18:27.133Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T21:27:49.133Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-902290869905430389277330", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-902290869905430389277330", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92" ] + }, + "id" : "urn:uuid:79c95818-d374-461c-912d-06578e2eecb4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-08-06T21:45:29.142Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T13:26:32.142Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-510487716251849834772083", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-510487716251849834772083", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274" ] + }, + "id" : "urn:uuid:778f6bcf-7ba9-46d2-813d-61f35fabe278" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-09T08:54:21.151Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T15:17:54.151Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-148935191165235732960541", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-148935191165235732960541", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553" ] + }, + "id" : "urn:uuid:0abfc513-e76d-46a8-bbb8-59acfb83a948" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-10T02:58:31.160Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T01:29:00.160Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-615441878657065286605076", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-615441878657065286605076", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4" ] + }, + "id" : "urn:uuid:17fa282f-749d-4fa3-8350-38e54fc20742" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-01-29T04:04:24.168Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T20:56:37.168Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-466341319939838354769417", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-466341319939838354769417", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68" ] + }, + "id" : "urn:uuid:46fae247-f1d3-4979-80d8-538bb1eadd12" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-07T18:04:25.177Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T17:08:43.177Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-789901152880734952134236", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-789901152880734952134236", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b" ] + }, + "id" : "urn:uuid:2bc0ef29-81dc-4b5d-9e9d-e0f1921813f2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-29T09:42:59.186Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T17:19:03.186Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-688775212999299341438292", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-688775212999299341438292", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6" ] + }, + "id" : "urn:uuid:a3748478-b3e8-4fe7-ac3f-f488db8c7209" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-05T01:52:16.197Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T03:21:03.197Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3468a376-0781-460d-8116-f856d82991d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-564826708181798696250773", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-564826708181798696250773", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, + "id" : "urn:uuid:eaf46ad0-a3c6-4726-b558-c2ff1c3c7f62" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 46, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 85, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 66, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-541349729499856041008743", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-541349729499856041008743", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6" ] + }, + "id" : "urn:uuid:5e0d0c7f-dc83-4de2-9f13-e108bdcde599" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-05T13:08:33.225Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T04:46:43.225Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-219278847366494902946800", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-219278847366494902946800", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9" ] + }, + "id" : "urn:uuid:e316373b-c8a5-44b4-912d-7a67bc0992c6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-08T17:48:27.236Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T20:04:22.236Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-560781753815025945210026", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-560781753815025945210026", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6" ] + }, + "id" : "urn:uuid:e9d8b3cb-a9a3-44eb-8086-9d3e35005dae" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-01T23:28:09.245Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T23:27:32.245Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3468a376-0781-460d-8116-f856d82991d8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3468a376-0781-460d-8116-f856d82991d8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3468a376-0781-460d-8116-f856d82991d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-513228808239589137482822", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3468a376-0781-460d-8116-f856d82991d8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-513228808239589137482822", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3468a376-0781-460d-8116-f856d82991d8" ] + }, + "id" : "urn:uuid:aae60cba-b816-4626-a965-6288a8883f82" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-02-08T11:00:23.254Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T03:02:06.254Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-213187631175963271664398", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-213187631175963271664398", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623" ] + }, + "id" : "urn:uuid:dc09fed4-098b-4164-b142-218a39972381" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-27T11:35:56.263Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T14:47:36.263Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-058017192633605763848054", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-058017192633605763848054", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3" ] + }, + "id" : "urn:uuid:9899e7c5-7dd0-4cc6-9d05-05ee696ce6f4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-15T12:36:39.273Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T06:55:48.273Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-116628983300949261244778", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-116628983300949261244778", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6" ] + }, + "id" : "urn:uuid:3b79f163-dde7-4810-b029-20bfe9d0651f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-11-09T07:28:57.281Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T15:47:17.282Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-918614016768663064062642", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-918614016768663064062642", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4" ] + }, + "id" : "urn:uuid:f6c21d21-7110-4f74-b9aa-869bca3cdec8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-23T13:58:39.291Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T10:59:03.291Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-883196468237773047118724", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-883196468237773047118724", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa" ] + }, + "id" : "urn:uuid:598f1d43-d8ed-481a-a47c-a52f2c4c604e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-04-05T12:50:58.302Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T14:22:24.302Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-712424717583102636048700", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-712424717583102636048700", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9" ] + }, + "id" : "urn:uuid:3c06c455-d9b4-44c1-b2fe-2332e98c0c4b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-08-08T19:04:39.312Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T02:33:43.312Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-941932246282445729198891", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-941932246282445729198891", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, + "id" : "urn:uuid:ceb5d441-f20f-4849-92b4-be54e6cf6dfb" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 28, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 77, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 39, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-204684400460424307102848", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-204684400460424307102848", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82" ] + }, + "id" : "urn:uuid:84befb24-67d2-4d20-a4c1-a532a18457cc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-29T10:55:41.331Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T17:53:09.331Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-150483216075263357894510", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-150483216075263357894510", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7" ] + }, + "id" : "urn:uuid:36940f19-3506-4e6a-a73d-9e4a772461ec" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-19T07:24:55.340Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T10:51:32.340Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-066594500153553986388205", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-066594500153553986388205", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a" ] + }, + "id" : "urn:uuid:cfae6599-d3db-4969-8490-9b4749da9bba" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-03-12T12:40:28.350Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T14:28:01.350Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-962440626078213373256644", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-962440626078213373256644", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836" ] + }, + "id" : "urn:uuid:b08dd8a2-4bef-4e7e-8a5c-7fa16a2ae525" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-03T17:54:54.358Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T08:01:17.358Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-687813704031626345890687", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-687813704031626345890687", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48" ] + }, + "id" : "urn:uuid:69736f33-eadc-45b2-86fa-eec51f1663fd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-10-20T12:01:37.368Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T21:05:32.368Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-433758223283945270397061", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-433758223283945270397061", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02" ] + }, + "id" : "urn:uuid:89aeae87-76f5-4a5f-8f5b-3decf09df770" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-28T17:43:41.376Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T16:03:54.376Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-718583915167592716362654", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-718583915167592716362654", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b" ] + }, + "id" : "urn:uuid:416db662-397d-4492-9f45-d2412a2c973c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-04-07T07:44:42.385Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T23:38:56.385Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-049436398343742255176456", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-049436398343742255176456", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77" ] + }, + "id" : "urn:uuid:66411480-2298-4ecc-a8b7-a9d50fd31cad" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-21T21:04:43.394Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T02:32:30.394Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-659820014152291787059961", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-659820014152291787059961", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7" ] + }, + "id" : "urn:uuid:1ac9e13e-f95a-49ef-9d1c-56af7b149ba4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-12T23:05:44.403Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T19:34:51.403Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-810004844826237009783078", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-810004844826237009783078", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1" ] + }, + "id" : "urn:uuid:7a4c83a1-cb41-483c-a569-398eabb0bc6f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-10-12T15:40:01.411Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T22:34:34.411Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-822176610855376218206575", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-822176610855376218206575", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, + "id" : "urn:uuid:2a3682d3-f96d-4aa1-b7a4-5551942d0bcb" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 64, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 12, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 40, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-901489521913424604127343", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-901489521913424604127343", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef" ] + }, + "id" : "urn:uuid:b9c46545-f446-4bad-ad38-7f35a4081118" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-23T01:00:32.430Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T13:42:14.430Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-974673906565686181295249", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-974673906565686181295249", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4" ] + }, + "id" : "urn:uuid:b2534871-62c6-4a1c-b15e-3c6292b1245b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-20T16:31:34.438Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T02:55:11.439Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-224436395938533589317576", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-224436395938533589317576", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af" ] + }, + "id" : "urn:uuid:bf816e17-f54c-462b-8c8e-1d33581aa0f3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-05T10:36:16.447Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T06:56:41.447Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-641867676607351335529041", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-641867676607351335529041", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c" ] + }, + "id" : "urn:uuid:cb8da108-46cf-4f16-a0a7-63898f9fd8e1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-17T00:28:02.456Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T19:44:26.456Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-555451761047750482661998", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-555451761047750482661998", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d" ] + }, + "id" : "urn:uuid:7160d552-8bde-46a1-8143-c31d0288b4e2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-10T09:13:02.465Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T18:38:31.465Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-155327489191233126660162", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-155327489191233126660162", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0" ] + }, + "id" : "urn:uuid:c4f5696f-d699-42d8-aad3-6135932e321f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-20T22:11:34.474Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T00:20:28.474Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-619821770252425873436905", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-619821770252425873436905", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f" ] + }, + "id" : "urn:uuid:13fe368d-8f98-463f-bad7-be81638d1303" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-12-05T05:04:14.482Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T13:32:39.482Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-723194679847909788699629", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-723194679847909788699629", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095" ] + }, + "id" : "urn:uuid:5ff35bcd-e45b-4632-ae5a-d48584a7fd64" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-06T12:14:45.491Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T09:22:19.491Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-244444514093946210748782", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-244444514093946210748782", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7" ] + }, + "id" : "urn:uuid:d75b4465-557c-4393-a848-5d8704c5c063" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-03-22T11:56:33.499Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T23:10:24.499Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-552318087808630305336514", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-552318087808630305336514", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950" ] + }, + "id" : "urn:uuid:913b87f4-e6b9-4edd-ba8a-a53fd469be63" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-06T19:16:52.508Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T23:51:12.508Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-620300057844142079885448", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-620300057844142079885448", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, + "id" : "urn:uuid:7db4efaf-246b-49d1-8dd6-5bde6ae9cdd8" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 8, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 86, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 75, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-644771007551516639990580", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-644771007551516639990580", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7" ] + }, + "id" : "urn:uuid:de6d7912-b8fa-4098-a811-5f86bdbebc98" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-12-28T19:09:35.526Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T17:06:48.526Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-763402978587667928075899", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-763402978587667928075899", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e" ] + }, + "id" : "urn:uuid:8de3f1ea-1657-4145-96c9-9f8cb8a5bf1d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-23T00:51:35.535Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T20:21:00.535Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-275016556258054297413390", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-275016556258054297413390", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8" ] + }, + "id" : "urn:uuid:784102ca-54f9-497d-9938-79b88c87094a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-11T19:24:48.544Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T14:31:09.544Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-681213832237352812592600", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-681213832237352812592600", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830" ] + }, + "id" : "urn:uuid:ad0c7da3-708d-4d09-a1dd-93e9194c21c3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-21T22:24:06.552Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T13:35:04.552Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-890001795194200771803951", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-890001795194200771803951", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14" ] + }, + "id" : "urn:uuid:3ac67872-2891-4d19-b6dd-4d555147faca" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-20T13:38:38.561Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T06:26:45.561Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-704511814749752931119638", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-704511814749752931119638", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc" ] + }, + "id" : "urn:uuid:4c4869f7-fcc8-48d2-95e6-97c96b4b083e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-28T05:24:07.569Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T06:04:21.569Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-323503919094558195966485", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-323503919094558195966485", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6" ] + }, + "id" : "urn:uuid:58d51db8-1bed-4f23-bc4f-623f3a90f1a0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-03T07:56:31.578Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T12:01:35.578Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-280512416249615053994641", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-280512416249615053994641", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3" ] + }, + "id" : "urn:uuid:4e6e31c5-3991-4cd2-b4ac-4ebf4331f24c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-02-05T07:55:11.587Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T17:56:53.587Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-609345689293468727536222", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-609345689293468727536222", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde" ] + }, + "id" : "urn:uuid:6aa18ec7-a1d4-406f-9daa-46d14a257f04" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-25T06:13:31.596Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T10:06:44.596Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-081012453619924608031564", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-081012453619924608031564", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8" ] + }, + "id" : "urn:uuid:a209632a-7e44-4e0f-9b3c-4a4bec305eb7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-26T17:20:13.605Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T07:58:20.605Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-047443450525268405199137", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-047443450525268405199137", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, + "id" : "urn:uuid:c07abae5-fdf7-47cf-b065-f93f517be418" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 30, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 67, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 14, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-883986859114229312050944", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-883986859114229312050944", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5" ] + }, + "id" : "urn:uuid:1f440ece-6d0e-4ae1-9e64-b794c6b23939" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-16T14:13:20.623Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T09:12:18.623Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-669586415954502742589178", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-669586415954502742589178", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b" ] + }, + "id" : "urn:uuid:9954c00e-6c40-48ef-97cd-034c86dd3aee" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-09-06T17:29:28.632Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T03:13:02.632Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-322955981967944376964560", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-322955981967944376964560", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096" ] + }, + "id" : "urn:uuid:9e488f1e-39e6-481c-9b1d-8c70883c356b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-19T18:39:57.640Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T13:38:09.640Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-271826467240647612396605", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-271826467240647612396605", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57" ] + }, + "id" : "urn:uuid:f8233742-f57d-40cc-9049-afc0d5b2701c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-12-31T10:45:54.649Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T22:08:42.649Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-736103037852853826401387", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-736103037852853826401387", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681" ] + }, + "id" : "urn:uuid:fffa7747-fc63-4294-b200-95c6ff0bafbf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-24T13:24:35.658Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T02:56:25.658Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-891455751678686841217334", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-891455751678686841217334", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340" ] + }, + "id" : "urn:uuid:c12533db-31da-4a73-aa10-83f5cd3a145c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-19T11:56:46.667Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T21:49:00.667Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-758936520432742178539893", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-758936520432742178539893", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f" ] + }, + "id" : "urn:uuid:ec489db4-b233-420d-bb89-de5d7509e9c7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-20T07:00:12.677Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T08:45:55.677Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-630160096170574883884020", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-630160096170574883884020", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7" ] + }, + "id" : "urn:uuid:65639b1f-b7e6-4418-bf71-d0d34df1a86b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-01T14:02:58.685Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T03:05:32.685Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-360746665742683106282526", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-360746665742683106282526", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97" ] + }, + "id" : "urn:uuid:d3072ab2-2484-4025-92b0-9eb48d85302f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-25T16:18:48.695Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T17:21:19.695Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-068352787948339226166086", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-068352787948339226166086", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929" ] + }, + "id" : "urn:uuid:8c13a94e-4a61-4e2b-85e0-93ad8ff0156f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-13T09:46:02.704Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T08:04:37.704Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "engine" : { + "size" : 2998, + "power" : 152 + }, + "emptyWeight" : 1.79, + "fuel" : "hybrid petrol/electric", + "vehicleModel" : "Vehicle Hybrid", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "childItems" : [ { + "catenaXId" : "urn:uuid:bac0e15a-6e07-428e-877d-41a994134d4b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:25e927b1-4c28-44fc-8975-f21ce50037c4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:60ae3003-2929-4413-9d0b-e760c87fb162", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:842ed6fd-9249-42c5-bd76-80b74df003e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e888e125-70fd-4b47-93b7-f0239cdcf485", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c3653200-b5c9-499b-9fd4-d86e46882048", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:606d833b-ef5f-42ef-a737-3edf3963a9e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fd7908b8-619a-44e3-a8ff-a1dd5176f681", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d93e2e1b-c93e-487c-a4b7-4e3e86da0a09", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:929cbc30-bef7-4428-9ea3-d41335ac66ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:11b9a51e-037b-46e0-ac73-9beac5545670", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fbb04405-3ecb-4b86-b773-80ea9a190535", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:90fe01b3-8535-4c14-aae4-8c5712902b9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bc0803dc-8f3b-4904-9fef-8f0215156f96", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:78b74e61-8437-4d60-ba9c-b2ee3ebc16a8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:01365915-d0b0-4af6-bdfc-fdaf8f41b70a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4017cc16-9d27-43a6-897d-1a5d14537b8d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a2776b04-23a4-44d6-9601-7327c1f4d988", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04842560-7620-4b2c-bc06-f169a13a2056", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5f9c88c5-9c38-4311-bdca-6f1a6d48b606", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f658ac98-3bc4-4129-8afd-39439532ed9e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:579c1e5f-1509-4f37-b072-d05e65f97c13", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5f4e293c-3a94-47ea-8d25-ea055526940e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a8e35f99-b9fd-4f1b-82b0-8dc7706cfb43", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f6d5590c-3449-434f-8b02-06db4ae4fce2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b7e9f1c5-8aac-4032-9abf-f315b9d1463b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f10e32fc-613e-4259-928c-21c021e6323c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b368cd4e-f1a9-438d-b6ec-22a31ae7f5d6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:262be818-78a2-4ef0-b6ee-164c16994ced", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:06f37cc3-ad17-4d8f-af0b-1f090d493c39", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "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" + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "SX-59", + "key" : "manufacturerPartId" + }, { + "value" : "OMCBWWDBUGRZHCDCS", + "key" : "partInstanceId" + }, { + "value" : "OMCBWWDBUGRZHCDCS", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2016-04-19T09:04:07.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "partTypeInformation" : { + "manufacturerPartId" : "SX-59", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Hybrid" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCBWWDBUGRZHCDCS", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "SX-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_hybrid.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Hybrid" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, + "id" : "urn:uuid:dc74296b-6aae-44fc-87d6-6b5eef0938d3" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 17, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 51, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 77, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 84, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 4, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 56, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 88, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 65, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 42, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 59, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:bac0e15a-6e07-428e-877d-41a994134d4b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bac0e15a-6e07-428e-877d-41a994134d4b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-038285592416487924508137", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bac0e15a-6e07-428e-877d-41a994134d4b", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-038285592416487924508137", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bac0e15a-6e07-428e-877d-41a994134d4b" ] + }, + "id" : "urn:uuid:ea04f39c-b19c-4756-aaa5-5dbe0fa82391" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:25e927b1-4c28-44fc-8975-f21ce50037c4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:25e927b1-4c28-44fc-8975-f21ce50037c4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-029026369723864779659953", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:25e927b1-4c28-44fc-8975-f21ce50037c4", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-029026369723864779659953", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:25e927b1-4c28-44fc-8975-f21ce50037c4" ] + }, + "id" : "urn:uuid:fba7fa22-c97e-4c7b-969d-0a3e9bb2105b" + } ] + }, { + "catenaXId" : "urn:uuid:60ae3003-2929-4413-9d0b-e760c87fb162", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:60ae3003-2929-4413-9d0b-e760c87fb162" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-411685739826550353679461", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:60ae3003-2929-4413-9d0b-e760c87fb162", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-411685739826550353679461", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:60ae3003-2929-4413-9d0b-e760c87fb162" ] + }, + "id" : "urn:uuid:83ea6067-8ad6-4010-9e23-d0df9cee46c3" + } ] + }, { + "catenaXId" : "urn:uuid:842ed6fd-9249-42c5-bd76-80b74df003e0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:842ed6fd-9249-42c5-bd76-80b74df003e0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-705691687067406349669135", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:842ed6fd-9249-42c5-bd76-80b74df003e0", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-705691687067406349669135", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:842ed6fd-9249-42c5-bd76-80b74df003e0" ] + }, + "id" : "urn:uuid:2cd47060-0a40-42dd-bf40-80f36095a391" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0", + "childItems" : [ { + "catenaXId" : "urn:uuid:f0f0aebb-b973-4db8-8795-628c2430d5b4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-692273969063492209726536", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-692273969063492209726536", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0" ] + }, + "id" : "urn:uuid:ff815dd0-acc3-43cf-9070-cc59b0521db1" + } ] + }, { + "catenaXId" : "urn:uuid:f0f0aebb-b973-4db8-8795-628c2430d5b4", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0f0aebb-b973-4db8-8795-628c2430d5b4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-446361602568644319029268", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0f0aebb-b973-4db8-8795-628c2430d5b4", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-446361602568644319029268", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0f0aebb-b973-4db8-8795-628c2430d5b4" ] + }, + "id" : "urn:uuid:3e326077-a86d-45ab-a9f3-4c88a1f0fdb4" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860", + "childItems" : [ { + "catenaXId" : "urn:uuid:48d3575a-ec24-4a1f-bfe7-300480f895cd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-037107706978692108404283", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-037107706978692108404283", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860" ] + }, + "id" : "urn:uuid:db0d37a6-4382-4d21-ba75-cedc5540d351" + } ] + }, { + "catenaXId" : "urn:uuid:48d3575a-ec24-4a1f-bfe7-300480f895cd", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:48d3575a-ec24-4a1f-bfe7-300480f895cd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-336967854475948298992629", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:48d3575a-ec24-4a1f-bfe7-300480f895cd", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-336967854475948298992629", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:48d3575a-ec24-4a1f-bfe7-300480f895cd" ] + }, + "id" : "urn:uuid:2fcd687b-d122-4703-a0f9-071e9590bc54" + } ] + }, { + "catenaXId" : "urn:uuid:e888e125-70fd-4b47-93b7-f0239cdcf485", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e888e125-70fd-4b47-93b7-f0239cdcf485" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-280459554867099724613901", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e888e125-70fd-4b47-93b7-f0239cdcf485", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-280459554867099724613901", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e888e125-70fd-4b47-93b7-f0239cdcf485" ] + }, + "id" : "urn:uuid:aa8a4a48-f8cb-41da-9d91-156eb91715a2" + } ] + }, { + "catenaXId" : "urn:uuid:c3653200-b5c9-499b-9fd4-d86e46882048", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c3653200-b5c9-499b-9fd4-d86e46882048" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-572849050542869510824921", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c3653200-b5c9-499b-9fd4-d86e46882048", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-572849050542869510824921", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c3653200-b5c9-499b-9fd4-d86e46882048" ] + }, + "id" : "urn:uuid:9c54d21b-8dc2-451a-a898-83701c25b1a9" + } ] + }, { + "catenaXId" : "urn:uuid:606d833b-ef5f-42ef-a737-3edf3963a9e9", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:606d833b-ef5f-42ef-a737-3edf3963a9e9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-739857019255955453171557", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:606d833b-ef5f-42ef-a737-3edf3963a9e9", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-739857019255955453171557", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:606d833b-ef5f-42ef-a737-3edf3963a9e9" ] + }, + "id" : "urn:uuid:5258c0c0-a0c9-4437-90dc-f3ec1a95bfbc" + } ] + }, { + "catenaXId" : "urn:uuid:fd7908b8-619a-44e3-a8ff-a1dd5176f681", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fd7908b8-619a-44e3-a8ff-a1dd5176f681" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-981803129358946130086738", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fd7908b8-619a-44e3-a8ff-a1dd5176f681", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-981803129358946130086738", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fd7908b8-619a-44e3-a8ff-a1dd5176f681" ] + }, + "id" : "urn:uuid:b5843a5f-e1f9-4c3a-82aa-42698df649e1" + } ] + }, { + "catenaXId" : "urn:uuid:d93e2e1b-c93e-487c-a4b7-4e3e86da0a09", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d93e2e1b-c93e-487c-a4b7-4e3e86da0a09" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-465595645006904234931576", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d93e2e1b-c93e-487c-a4b7-4e3e86da0a09", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-465595645006904234931576", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d93e2e1b-c93e-487c-a4b7-4e3e86da0a09" ] + }, + "id" : "urn:uuid:cb2057ea-c29e-424a-bc5f-3a69959cf7d5" + } ] + }, { + "catenaXId" : "urn:uuid:929cbc30-bef7-4428-9ea3-d41335ac66ac", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:929cbc30-bef7-4428-9ea3-d41335ac66ac" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-010099752324804982300324", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:929cbc30-bef7-4428-9ea3-d41335ac66ac", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-010099752324804982300324", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:929cbc30-bef7-4428-9ea3-d41335ac66ac" ] + }, + "id" : "urn:uuid:c6870bef-49d7-4bb2-a93b-aa8ac72a63eb" + } ] + }, { + "catenaXId" : "urn:uuid:11b9a51e-037b-46e0-ac73-9beac5545670", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:11b9a51e-037b-46e0-ac73-9beac5545670" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-991788494794844628551869", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:11b9a51e-037b-46e0-ac73-9beac5545670", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-991788494794844628551869", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:11b9a51e-037b-46e0-ac73-9beac5545670" ] + }, + "id" : "urn:uuid:11d1c2c1-b260-47ed-bbe6-e5dc4a021e46" + } ] + }, { + "catenaXId" : "urn:uuid:fbb04405-3ecb-4b86-b773-80ea9a190535", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fbb04405-3ecb-4b86-b773-80ea9a190535" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-360671890299089468573360", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fbb04405-3ecb-4b86-b773-80ea9a190535", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-360671890299089468573360", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fbb04405-3ecb-4b86-b773-80ea9a190535" ] + }, + "id" : "urn:uuid:07006019-428a-4bee-b491-e6954f7b5044" + } ] + }, { + "catenaXId" : "urn:uuid:90fe01b3-8535-4c14-aae4-8c5712902b9d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:90fe01b3-8535-4c14-aae4-8c5712902b9d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-894448370289033121974718", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:90fe01b3-8535-4c14-aae4-8c5712902b9d", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-894448370289033121974718", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:90fe01b3-8535-4c14-aae4-8c5712902b9d" ] + }, + "id" : "urn:uuid:a01e9374-8dbd-4ed9-9894-26d982a8602d" + } ] + }, { + "catenaXId" : "urn:uuid:bc0803dc-8f3b-4904-9fef-8f0215156f96", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bc0803dc-8f3b-4904-9fef-8f0215156f96" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-343189845635723916535151", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bc0803dc-8f3b-4904-9fef-8f0215156f96", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-343189845635723916535151", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bc0803dc-8f3b-4904-9fef-8f0215156f96" ] + }, + "id" : "urn:uuid:8e141745-e630-4b91-8b83-f640d7789440" + } ] + }, { + "catenaXId" : "urn:uuid:78b74e61-8437-4d60-ba9c-b2ee3ebc16a8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:78b74e61-8437-4d60-ba9c-b2ee3ebc16a8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-322538284834516953816584", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:78b74e61-8437-4d60-ba9c-b2ee3ebc16a8", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-322538284834516953816584", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:78b74e61-8437-4d60-ba9c-b2ee3ebc16a8" ] + }, + "id" : "urn:uuid:6aa4c10e-e7c7-4d33-a34c-5b9a9fdee61a" + } ] + }, { + "catenaXId" : "urn:uuid:01365915-d0b0-4af6-bdfc-fdaf8f41b70a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:01365915-d0b0-4af6-bdfc-fdaf8f41b70a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-349280240338127854224449", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:01365915-d0b0-4af6-bdfc-fdaf8f41b70a", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-349280240338127854224449", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:01365915-d0b0-4af6-bdfc-fdaf8f41b70a" ] + }, + "id" : "urn:uuid:fa7699e3-b6ad-4618-99fd-5530aba0b40a" + } ] + }, { + "catenaXId" : "urn:uuid:4017cc16-9d27-43a6-897d-1a5d14537b8d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4017cc16-9d27-43a6-897d-1a5d14537b8d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-991401599155151281164302", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4017cc16-9d27-43a6-897d-1a5d14537b8d", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-991401599155151281164302", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4017cc16-9d27-43a6-897d-1a5d14537b8d" ] + }, + "id" : "urn:uuid:ca1fe8d7-0e96-4deb-a8b8-04d16054d9e1" + } ] + }, { + "catenaXId" : "urn:uuid:a2776b04-23a4-44d6-9601-7327c1f4d988", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a2776b04-23a4-44d6-9601-7327c1f4d988" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-285257174868165885028198", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a2776b04-23a4-44d6-9601-7327c1f4d988", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-285257174868165885028198", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a2776b04-23a4-44d6-9601-7327c1f4d988" ] + }, + "id" : "urn:uuid:56298ea9-93ee-4e93-9c22-11aa9cab5b87" + } ] + }, { + "catenaXId" : "urn:uuid:04842560-7620-4b2c-bc06-f169a13a2056", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:04842560-7620-4b2c-bc06-f169a13a2056" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-865720230227044683050708", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04842560-7620-4b2c-bc06-f169a13a2056", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-865720230227044683050708", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:04842560-7620-4b2c-bc06-f169a13a2056" ] + }, + "id" : "urn:uuid:24bf05d3-3166-4ed6-9ecd-f13e646f33b3" + } ] + }, { + "catenaXId" : "urn:uuid:5f9c88c5-9c38-4311-bdca-6f1a6d48b606", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5f9c88c5-9c38-4311-bdca-6f1a6d48b606" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-246163835886968108904822", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5f9c88c5-9c38-4311-bdca-6f1a6d48b606", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-246163835886968108904822", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5f9c88c5-9c38-4311-bdca-6f1a6d48b606" ] + }, + "id" : "urn:uuid:0316c4d2-b14e-4ce6-86a4-f452411d7caa" + } ] + }, { + "catenaXId" : "urn:uuid:f658ac98-3bc4-4129-8afd-39439532ed9e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f658ac98-3bc4-4129-8afd-39439532ed9e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-033062704979618043239684", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f658ac98-3bc4-4129-8afd-39439532ed9e", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-033062704979618043239684", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f658ac98-3bc4-4129-8afd-39439532ed9e" ] + }, + "id" : "urn:uuid:96bb7c4c-d7ee-4d1f-b9e5-f9867a644e6b" + } ] + }, { + "catenaXId" : "urn:uuid:579c1e5f-1509-4f37-b072-d05e65f97c13", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:579c1e5f-1509-4f37-b072-d05e65f97c13" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-022108520137523412046855", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:579c1e5f-1509-4f37-b072-d05e65f97c13", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-022108520137523412046855", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:579c1e5f-1509-4f37-b072-d05e65f97c13" ] + }, + "id" : "urn:uuid:ba548bc1-ecad-4435-bd95-036c68cd8710" + } ] + }, { + "catenaXId" : "urn:uuid:5f4e293c-3a94-47ea-8d25-ea055526940e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5f4e293c-3a94-47ea-8d25-ea055526940e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-494423900622267426424327", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5f4e293c-3a94-47ea-8d25-ea055526940e", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-494423900622267426424327", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5f4e293c-3a94-47ea-8d25-ea055526940e" ] + }, + "id" : "urn:uuid:16ab157e-fabc-4d6c-87df-8bc55849f037" + } ] + }, { + "catenaXId" : "urn:uuid:a8e35f99-b9fd-4f1b-82b0-8dc7706cfb43", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a8e35f99-b9fd-4f1b-82b0-8dc7706cfb43" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-025051927504891377515737", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a8e35f99-b9fd-4f1b-82b0-8dc7706cfb43", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-025051927504891377515737", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a8e35f99-b9fd-4f1b-82b0-8dc7706cfb43" ] + }, + "id" : "urn:uuid:b25e0d09-4af9-4734-8757-2d2bb2ea660b" + } ] + }, { + "catenaXId" : "urn:uuid:f6d5590c-3449-434f-8b02-06db4ae4fce2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f6d5590c-3449-434f-8b02-06db4ae4fce2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-929834084788270951051185", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f6d5590c-3449-434f-8b02-06db4ae4fce2", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-929834084788270951051185", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f6d5590c-3449-434f-8b02-06db4ae4fce2" ] + }, + "id" : "urn:uuid:d04f1b77-d6fd-4bb7-9e72-fea4d8bfa29d" + } ] + }, { + "catenaXId" : "urn:uuid:b7e9f1c5-8aac-4032-9abf-f315b9d1463b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b7e9f1c5-8aac-4032-9abf-f315b9d1463b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-011949846213224567027153", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b7e9f1c5-8aac-4032-9abf-f315b9d1463b", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-011949846213224567027153", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b7e9f1c5-8aac-4032-9abf-f315b9d1463b" ] + }, + "id" : "urn:uuid:3aabe9b9-d992-429f-938e-9af6b493f121" + } ] + }, { + "catenaXId" : "urn:uuid:f10e32fc-613e-4259-928c-21c021e6323c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f10e32fc-613e-4259-928c-21c021e6323c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-581322984044582366495753", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f10e32fc-613e-4259-928c-21c021e6323c", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-581322984044582366495753", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f10e32fc-613e-4259-928c-21c021e6323c" ] + }, + "id" : "urn:uuid:192974dd-700f-4e85-a895-c119f8088727" + } ] + }, { + "catenaXId" : "urn:uuid:b368cd4e-f1a9-438d-b6ec-22a31ae7f5d6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b368cd4e-f1a9-438d-b6ec-22a31ae7f5d6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-464875641346575255047760", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b368cd4e-f1a9-438d-b6ec-22a31ae7f5d6", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-464875641346575255047760", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b368cd4e-f1a9-438d-b6ec-22a31ae7f5d6" ] + }, + "id" : "urn:uuid:2e6dc15a-0544-4b59-aac6-7517a79ce0e7" + } ] + }, { + "catenaXId" : "urn:uuid:262be818-78a2-4ef0-b6ee-164c16994ced", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:262be818-78a2-4ef0-b6ee-164c16994ced" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-681908114700842409911592", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:262be818-78a2-4ef0-b6ee-164c16994ced", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-681908114700842409911592", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:262be818-78a2-4ef0-b6ee-164c16994ced" ] + }, + "id" : "urn:uuid:1e0472d2-b2c2-4dbc-95ae-a02b263765b9" + } ] + }, { + "catenaXId" : "urn:uuid:06f37cc3-ad17-4d8f-af0b-1f090d493c39", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:06f37cc3-ad17-4d8f-af0b-1f090d493c39" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-063065315983409912090800", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:06f37cc3-ad17-4d8f-af0b-1f090d493c39", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-063065315983409912090800", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:06f37cc3-ad17-4d8f-af0b-1f090d493c39" ] + }, + "id" : "urn:uuid:bdbd866a-2440-43d7-9c42-a02681184ab0" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", + "childItems" : [ { + "catenaXId" : "urn:uuid:4012f317-594e-418d-80ef-4bb09f8bc174", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ae547ab6-70a6-4b85-8283-2f2337d2d59a", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-881731880981347290969723", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-881731880981347290969723", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-881731880981347290969723", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf" ] + }, + "id" : "urn:uuid:38db335d-93da-4609-8fc1-ef93c42ab5e4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 68, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 41, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 57, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:4012f317-594e-418d-80ef-4bb09f8bc174", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4012f317-594e-418d-80ef-4bb09f8bc174" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "01906L6-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-720911004732297494897114", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4012f317-594e-418d-80ef-4bb09f8bc174", + "partTypeInformation" : { + "manufacturerPartId" : "01906L6-75", + "customerPartId" : "01906L6-75", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 68, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 58, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9", + "childItems" : [ { + "catenaXId" : "urn:uuid:33430fa7-5dba-45ef-b36c-d07183692f68", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "72402X9-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-672444107838947203659293", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9", + "partTypeInformation" : { + "manufacturerPartId" : "72402X9-87", + "customerPartId" : "72402X9-87", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-672444107838947203659293", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "72402X9-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9" ] + }, + "id" : "urn:uuid:9f044c32-2219-46e9-9ec0-17cd6866a053" + } ] + }, { + "catenaXId" : "urn:uuid:33430fa7-5dba-45ef-b36c-d07183692f68", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:33430fa7-5dba-45ef-b36c-d07183692f68" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "11186D2-94", + "key" : "manufacturerPartId" + }, { + "value" : "NO-645734218319355826420831", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:33430fa7-5dba-45ef-b36c-d07183692f68", + "partTypeInformation" : { + "manufacturerPartId" : "11186D2-94", + "customerPartId" : "11186D2-94", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 58, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 81, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ae547ab6-70a6-4b85-8283-2f2337d2d59a", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:ae547ab6-70a6-4b85-8283-2f2337d2d59a", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ae547ab6-70a6-4b85-8283-2f2337d2d59a" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "56330K5-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-902464408305574453945467", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ae547ab6-70a6-4b85-8283-2f2337d2d59a", + "partTypeInformation" : { + "manufacturerPartId" : "56330K5-57", + "customerPartId" : "56330K5-57", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc", + "childItems" : [ { + "catenaXId" : "urn:uuid:b5bb19e0-079b-42c1-a5e2-b345055d9c95", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d9d526f7-87a4-4440-af75-1541a8fdcbc5", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "48573N9-39", + "key" : "manufacturerPartId" + }, { + "value" : "NO-624692895414465128174053", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc", + "partTypeInformation" : { + "manufacturerPartId" : "48573N9-39", + "customerPartId" : "48573N9-39", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-624692895414465128174053", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "48573N9-39", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc" ] + }, + "id" : "urn:uuid:73a6bb3a-e638-40cb-9883-18729fea68f9" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 79, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b5bb19e0-079b-42c1-a5e2-b345055d9c95", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b5bb19e0-079b-42c1-a5e2-b345055d9c95" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "81237Y6-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-297896820230400641043157", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b5bb19e0-079b-42c1-a5e2-b345055d9c95", + "partTypeInformation" : { + "manufacturerPartId" : "81237Y6-24", + "customerPartId" : "81237Y6-24", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 13, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 83, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934", + "childItems" : [ { + "catenaXId" : "urn:uuid:3278f37c-36f0-413c-846b-8fba1706895b", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "31771W2-00", + "key" : "manufacturerPartId" + }, { + "value" : "NO-221591979197622573224426", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934", + "partTypeInformation" : { + "manufacturerPartId" : "31771W2-00", + "customerPartId" : "31771W2-00", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-221591979197622573224426", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "31771W2-00", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934" ] + }, + "id" : "urn:uuid:7576f4e1-6e85-4e17-8b2f-9fa566a026d1" + } ] + }, { + "catenaXId" : "urn:uuid:3278f37c-36f0-413c-846b-8fba1706895b", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3278f37c-36f0-413c-846b-8fba1706895b" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "60590H1-69", + "key" : "manufacturerPartId" + }, { + "value" : "NO-267967987949998684904526", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3278f37c-36f0-413c-846b-8fba1706895b", + "partTypeInformation" : { + "manufacturerPartId" : "60590H1-69", + "customerPartId" : "60590H1-69", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 42, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 19, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d9d526f7-87a4-4440-af75-1541a8fdcbc5", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d9d526f7-87a4-4440-af75-1541a8fdcbc5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "15923N5-32", + "key" : "manufacturerPartId" + }, { + "value" : "NO-748132987512687856424048", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d9d526f7-87a4-4440-af75-1541a8fdcbc5", + "partTypeInformation" : { + "manufacturerPartId" : "15923N5-32", + "customerPartId" : "15923N5-32", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-748132987512687856424048", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15923N5-32", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d9d526f7-87a4-4440-af75-1541a8fdcbc5" ] + }, + "id" : "urn:uuid:08b734ec-8ebe-487d-bc2b-cbbd5d2f748f" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 9, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 24, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "childItems" : [ { + "catenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-204120352239877854334334", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-204120352239877854334334", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f" ] + }, + "id" : "urn:uuid:eaaed8e2-3e2c-4519-9ac8-d11192483de5" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 84, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 62, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 25, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-514587586795061086844339", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-514587586795061086844339", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, + "id" : "urn:uuid:b0e002be-6164-4425-b0a1-2c328e5b2c20" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 76, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 29, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 74, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-585746225536410487490470", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-585746225536410487490470", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b" ] + }, + "id" : "urn:uuid:fe77dbb0-7f20-4588-98d6-448bde89c790" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-11T18:04:23.864Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T13:03:07.864Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-798643780376313409616722", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-798643780376313409616722", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26" ] + }, + "id" : "urn:uuid:e84ebe53-db5c-4cf7-bc99-199a22957be3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-17T07:12:47.874Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T03:31:22.874Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-174926966081762182121811", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-174926966081762182121811", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116" ] + }, + "id" : "urn:uuid:af8be531-7dfd-44e2-9755-d0a17906ca7c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-15T01:49:12.883Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T11:52:22.883Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-343089555182600629972084", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-343089555182600629972084", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b" ] + }, + "id" : "urn:uuid:d85bd34f-c16f-4493-97bc-466f7a38dc66" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-03-23T10:28:27.892Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T22:35:20.892Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-697189648228887250734017", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-697189648228887250734017", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155" ] + }, + "id" : "urn:uuid:9d014d01-bf09-43ad-b0d4-94d08486dde9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-24T02:15:47.901Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T21:34:03.901Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-924338981132262187697709", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-924338981132262187697709", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591" ] + }, + "id" : "urn:uuid:773f3c73-8430-494e-99ba-ce0ada053be1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-13T06:49:28.910Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T09:47:39.910Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-765592041985493798939971", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-765592041985493798939971", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81" ] + }, + "id" : "urn:uuid:4f3a37ca-7f40-4ae5-ab85-b57d49d108be" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-13T20:26:56.919Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T19:05:08.919Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-057159088137200105466822", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-057159088137200105466822", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05" ] + }, + "id" : "urn:uuid:3cda28ef-5292-4a6f-9795-02b0309dae6e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-14T20:21:59.930Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T18:16:26.930Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-445514974507607886934629", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-445514974507607886934629", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70" ] + }, + "id" : "urn:uuid:cf5faaf2-8d37-4ddb-9459-1286f24b8f0f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-13T18:37:08.940Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T00:54:52.940Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-679708675109518068992958", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-679708675109518068992958", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6" ] + }, + "id" : "urn:uuid:cc586d15-ccf8-46d2-8a2d-598142d0c56b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-19T00:29:22.950Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T07:16:30.950Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-791058133838495061047429", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-791058133838495061047429", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, + "id" : "urn:uuid:7fc2d00f-1fe5-404b-866e-5865cf08a9d6" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 63, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 51, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 17, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-975074129794487130149903", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-975074129794487130149903", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760" ] + }, + "id" : "urn:uuid:940f0565-3066-449f-a7f7-40f4467f5f02" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-24T22:37:38.972Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T22:05:52.972Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-412769856210227863986015", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-412769856210227863986015", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b" ] + }, + "id" : "urn:uuid:eae1aa6d-979a-4b17-9d5a-1f1d2ecd3a55" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-15T02:54:21.981Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T08:13:39.981Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-452995532181997553955053", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-452995532181997553955053", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1" ] + }, + "id" : "urn:uuid:c89afb75-1d38-4ee6-88b2-13d8ddd9ad24" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-21T23:11:16.991Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T23:49:47.991Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-722544284344587539357549", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-722544284344587539357549", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a" ] + }, + "id" : "urn:uuid:187c0289-277b-4e5d-a383-69e108f6643d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-29T14:16:07.999Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T18:47:20.999Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-149699020385004080517475", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-149699020385004080517475", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd" ] + }, + "id" : "urn:uuid:a6988d37-302f-4384-a09b-857e6f63fa50" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-19T19:42:05.009Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T14:04:32.009Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-194962425519653039995871", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-194962425519653039995871", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818" ] + }, + "id" : "urn:uuid:65fe8801-9dd8-4d41-bd80-f432cca134f3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-07-12T03:08:20.018Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T03:22:38.018Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-805597149838843893634820", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-805597149838843893634820", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3" ] + }, + "id" : "urn:uuid:c90d9161-95a6-4e6d-96a3-98ea184724e7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-02T02:21:00.027Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T10:00:47.027Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-964596478984238242385426", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-964596478984238242385426", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609" ] + }, + "id" : "urn:uuid:f683c6a8-c3ef-41ad-818c-2a3b0b37a2cc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-01T15:01:05.037Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T00:54:54.037Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-573569281646862629319070", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-573569281646862629319070", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec" ] + }, + "id" : "urn:uuid:928fd9ec-0124-4940-9166-e60c6f002058" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-13T16:17:54.046Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T14:34:39.046Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-686738655869694948863030", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-686738655869694948863030", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15" ] + }, + "id" : "urn:uuid:5c714e31-9923-4f92-b243-d4066767ffcd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-10T04:17:54.055Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T00:03:04.055Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-403353525866335222357167", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-403353525866335222357167", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, + "id" : "urn:uuid:8d0d95ac-2fbc-43df-9f49-6e757ad31215" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 47, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 54, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 52, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-477531074416020657546581", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-477531074416020657546581", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6" ] + }, + "id" : "urn:uuid:8eb882d7-2a54-45ea-a1d8-356302f4e74a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-12-18T19:02:44.074Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T07:01:27.074Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-273960385899232590246635", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-273960385899232590246635", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42" ] + }, + "id" : "urn:uuid:274d1276-292b-46c9-aca6-27f0087b93fa" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-01T01:26:14.083Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T01:47:56.083Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-983843687492979561728852", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-983843687492979561728852", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572" ] + }, + "id" : "urn:uuid:a4c788d8-aeb0-47d8-813d-ffaafd9af1b0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-23T12:27:32.092Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T21:59:18.092Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-019567315562317793593419", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-019567315562317793593419", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55" ] + }, + "id" : "urn:uuid:d61eb92a-652f-4e28-8fd0-fcc3925f039d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-19T20:02:50.101Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T23:53:37.101Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-739961382004638872796405", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-739961382004638872796405", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3" ] + }, + "id" : "urn:uuid:25a48e83-40a7-4c6d-8dfd-e17928b3e3ea" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-18T10:41:58.110Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T07:33:15.110Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-456469138785182261028782", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-456469138785182261028782", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15" ] + }, + "id" : "urn:uuid:6042e967-0597-458d-b8ac-eb9e092cfc58" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-05T13:15:08.119Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T15:10:54.119Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-163961930013542154041006", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-163961930013542154041006", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae" ] + }, + "id" : "urn:uuid:e618b799-d940-486f-8782-e190e1cd7887" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-02-01T04:08:03.129Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T22:55:32.129Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-412341288540177968964120", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-412341288540177968964120", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add" ] + }, + "id" : "urn:uuid:98eb3ada-6881-421e-aa6c-4e4c8e9a626f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-11-27T16:10:30.140Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T12:05:28.140Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-875296257829737163815631", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-875296257829737163815631", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448" ] + }, + "id" : "urn:uuid:4c67c49d-55ae-4fef-9578-a671f479c5b8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-23T15:30:35.153Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T02:42:19.153Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-018870031072101307482937", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-018870031072101307482937", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f" ] + }, + "id" : "urn:uuid:42098b01-a9e5-4651-810e-f643addad42a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-15T05:44:56.168Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T15:22:06.168Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-112470034020382581659512", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-112470034020382581659512", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, + "id" : "urn:uuid:61c0fa0d-66d7-413c-bc95-bbad5dacc86a" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 9, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 14, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 25, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-055249378634098038406270", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-055249378634098038406270", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f" ] + }, + "id" : "urn:uuid:4ee0c769-44fe-4ec7-a93a-d159c2160f80" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-01T21:00:33.194Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T11:44:53.194Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-838438947367149589160707", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-838438947367149589160707", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd" ] + }, + "id" : "urn:uuid:78185157-fed2-4bb4-b9bd-e7fbcb6fa5c0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-04-18T19:14:45.207Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T09:43:06.208Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-174876985993132854386421", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-174876985993132854386421", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc" ] + }, + "id" : "urn:uuid:601814e3-66ec-4405-8912-45c8187513f4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-08T20:48:36.220Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T20:26:45.220Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-312148742771600863929814", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-312148742771600863929814", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6" ] + }, + "id" : "urn:uuid:4289facf-0ab4-4ab9-a6dd-478e7d4ab0cd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-26T17:50:26.231Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T15:56:21.231Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-696419768123230221558524", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-696419768123230221558524", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92" ] + }, + "id" : "urn:uuid:41de1384-d827-4cae-8e9d-ac4b058da6b4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-30T15:22:55.240Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T04:54:39.240Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-612003700514190060255523", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-612003700514190060255523", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458" ] + }, + "id" : "urn:uuid:2cf3f0ec-b012-4d93-a184-8246ab1eb5f5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-06-08T03:35:34.249Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T10:54:48.249Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-254271710496481687866408", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-254271710496481687866408", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a" ] + }, + "id" : "urn:uuid:9aaf6bec-6d10-4641-870e-0e5554c11c89" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-14T16:19:32.258Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T21:02:53.258Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-621924781052439360978680", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-621924781052439360978680", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9" ] + }, + "id" : "urn:uuid:f44f222f-e311-4649-800e-104611998bde" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-21T18:36:05.267Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T12:58:14.267Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-518382549015273957054886", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-518382549015273957054886", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194" ] + }, + "id" : "urn:uuid:c3df3929-1f07-4628-9f99-55a4b3b115df" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-23T14:27:14.276Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T13:04:22.276Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-370870965240276432028741", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-370870965240276432028741", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea" ] + }, + "id" : "urn:uuid:4dd62cb5-9deb-47c1-ba7e-bc2f49abef64" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-10T00:28:20.286Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T17:13:13.286Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4def8315-96e0-4586-9257-debaedff2142", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-177462987172881305234086", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-177462987172881305234086", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, + "id" : "urn:uuid:f108ac6a-cacd-4e66-80b0-e3b16da73434" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 49, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 3, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 6, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-507464914237460334234316", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-507464914237460334234316", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922" ] + }, + "id" : "urn:uuid:07977003-cc7a-47d8-8c6b-7ce96588def2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-06T02:47:05.305Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T00:45:36.305Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4def8315-96e0-4586-9257-debaedff2142", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4def8315-96e0-4586-9257-debaedff2142", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4def8315-96e0-4586-9257-debaedff2142" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-686700575066979070282892", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4def8315-96e0-4586-9257-debaedff2142", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-686700575066979070282892", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4def8315-96e0-4586-9257-debaedff2142" ] + }, + "id" : "urn:uuid:7da3e3fc-c846-4786-ae1d-a5ffd50b0324" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-30T06:48:36.314Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T13:27:18.314Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-727259797493032505095784", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-727259797493032505095784", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df" ] + }, + "id" : "urn:uuid:5b338325-c50a-47f6-bd72-e7abee34d8db" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-19T00:21:40.324Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T23:33:18.324Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-731578893244037991308927", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-731578893244037991308927", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567" ] + }, + "id" : "urn:uuid:54d572e6-8c93-48f9-aa75-47f2d3ea1301" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-02T23:51:17.335Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T03:36:21.335Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-165230810075515470672631", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-165230810075515470672631", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed" ] + }, + "id" : "urn:uuid:035a9522-9aa0-4e49-8e72-5c24e864408c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-10T19:22:52.347Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T15:26:54.347Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-769333695706952426490532", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-769333695706952426490532", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5" ] + }, + "id" : "urn:uuid:d994bd58-4fbc-425e-8dd4-b65a25500c83" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-02-06T19:46:24.360Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T16:46:44.360Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-120639415688657269950199", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-120639415688657269950199", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57" ] + }, + "id" : "urn:uuid:82ba8520-4577-405b-bcbf-affeaddbaf63" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-25T06:18:14.373Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T07:19:11.373Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-142790162095904442872735", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-142790162095904442872735", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2" ] + }, + "id" : "urn:uuid:ec883878-fe17-4024-a05d-13dd650f7528" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-03-19T13:39:09.386Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T21:54:16.386Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-319972311286707293191125", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-319972311286707293191125", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70" ] + }, + "id" : "urn:uuid:95b0c92a-3a6e-4f0b-b68e-02a2d6a3f117" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-27T05:08:41.399Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T16:58:35.399Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-337544586277900468660122", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-337544586277900468660122", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0" ] + }, + "id" : "urn:uuid:52cf813a-8b20-4612-be69-bda5a332b566" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-22T09:05:05.413Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T11:10:25.413Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-434644948507153559693748", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-434644948507153559693748", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, + "id" : "urn:uuid:d2f69d7e-2077-4d3d-b548-c145c4a1f7a1" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 72, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 67, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 77, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-748660413117389460583058", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-748660413117389460583058", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5" ] + }, + "id" : "urn:uuid:80ab1fb8-78bc-4c68-ac53-e90e54dc3be4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-29T17:30:57.442Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T15:32:50.442Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-994995296992737327847700", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-994995296992737327847700", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca" ] + }, + "id" : "urn:uuid:5075cdea-642a-455b-92d9-22eda5cfaa9d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-30T01:50:19.457Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T19:59:23.457Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-317961093013268408393141", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-317961093013268408393141", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22" ] + }, + "id" : "urn:uuid:9325be88-a96c-452a-ba3f-d5fe2da8e744" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-02-26T11:58:45.468Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T15:44:08.468Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-573149605536535829739323", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-573149605536535829739323", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb" ] + }, + "id" : "urn:uuid:1f2250b2-e0a4-4901-b71d-93a0eb1feb7d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-31T23:21:01.482Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T13:30:23.482Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-575418177394780662570385", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-575418177394780662570385", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037" ] + }, + "id" : "urn:uuid:4c6d25f9-1a7f-42ea-a2a6-7fcb9def9f03" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-26T05:00:21.494Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T03:24:21.494Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-281983694037424900213652", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-281983694037424900213652", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e" ] + }, + "id" : "urn:uuid:bbc3f7c5-0039-4cc7-a8b7-12a8b11518f0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-04T16:56:15.507Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T08:25:08.507Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-068990227677751160477605", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-068990227677751160477605", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6" ] + }, + "id" : "urn:uuid:e1dc54ff-9f3b-4c5b-aef2-ffdc8cefb72a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-07-31T21:15:14.520Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T16:10:06.520Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-226329610030550203795043", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-226329610030550203795043", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3" ] + }, + "id" : "urn:uuid:3f19736f-c209-4358-a70c-dade2e975daa" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-26T07:47:31.532Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T17:21:37.532Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-901750121192618493257800", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-901750121192618493257800", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f" ] + }, + "id" : "urn:uuid:57d16ece-f849-4c5b-a9be-5e54f544bed7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-17T02:18:08.545Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T01:42:23.545Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-198328689068374648536356", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-198328689068374648536356", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d" ] + }, + "id" : "urn:uuid:9b803b55-2a3f-48cd-b6ce-0c039955b94b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-05-31T03:07:18.560Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T20:41:56.560Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "engine" : { + "size" : 2998, + "power" : 152 + }, + "emptyWeight" : 1.79, + "fuel" : "hybrid petrol/electric", + "vehicleModel" : "Vehicle Hybrid", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + }, { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9478e3e2-7716-429f-b709-62a06e83286a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3dfb5a47-ea06-4645-8582-ce11f5517fb4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d16d3485-92a6-408b-b1ec-102412315acb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7b6f48f0-48db-4825-8fb2-aadecb0fd5b0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c6109698-9d76-467e-b126-136cda9583a1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5e804f47-4831-414c-96db-43fa1438174c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:33f01141-bc0f-475d-9c8e-0cf2121c4556", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6bfaa801-4ade-4d5b-9be6-659f7ece61ee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:402a1282-877d-4450-b20d-1ac2b5d29824", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c2a913ef-9d54-4610-b786-ad70a9570e40", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e43847f4-7dbd-40b3-85c9-98ef8c7240c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8c14cd71-2f6c-448f-9713-fa0a13bb85c1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a7d6c254-f9f6-4533-95f2-1432a1851b42", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8f3f417f-af9b-46e8-915b-304c582abe9b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c847fb7a-4c76-4aa0-9170-f422ec3c4dc3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d6ae50cd-4b04-4e6b-8ed2-8f0a8f38cec2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6afbd9ce-4796-4268-ad46-47fe9487968d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:688e3a45-596a-4f5d-b5ac-cba79e2843ee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:20d9781b-be2b-4375-9653-45aea945638d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:213c6064-127a-46c4-905d-37a82bc367a8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:028cf02c-0687-4a87-aa87-c38c74af04ea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cd8b0275-15cb-4aac-8a2b-f56757c716d6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0616945c-0c35-465c-935c-ef8cc9c9ef57", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d4d9be86-d529-4cb8-a484-d6ba58f58562", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:45bbe2ee-d1b2-41be-b0af-62b5214c80ae", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e58a0fd7-9a83-4027-8bb1-e028d2aa67cb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:92a205c4-2623-404c-9cf3-33b136995fef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b8c4a37d-0e14-4f6c-8d93-254edc742d7d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:43cd2be5-6e55-4f4b-8206-23ca1970f765", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:73fd5254-6c3e-4893-9d0d-aaecaa82d3f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "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" + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "TH-61", + "key" : "manufacturerPartId" + }, { + "value" : "OMCILCBEPWSLKDPQQ", + "key" : "partInstanceId" + }, { + "value" : "OMCILCBEPWSLKDPQQ", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2014-07-18T04:01:31.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "partTypeInformation" : { + "manufacturerPartId" : "TH-61", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Hybrid" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCILCBEPWSLKDPQQ", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "TH-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_hybrid.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Hybrid" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, + "id" : "urn:uuid:a0172f87-76b7-4e1c-8cff-c5d45b9d00f7" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 45, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 48, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 45, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 25, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 4, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 32, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 60, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 37, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 47, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 6, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9478e3e2-7716-429f-b709-62a06e83286a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9478e3e2-7716-429f-b709-62a06e83286a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-348228200213960522463225", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9478e3e2-7716-429f-b709-62a06e83286a", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-348228200213960522463225", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9478e3e2-7716-429f-b709-62a06e83286a" ] + }, + "id" : "urn:uuid:c9c0a9bc-56af-4c90-9fd4-c80376bca1a6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:3dfb5a47-ea06-4645-8582-ce11f5517fb4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3dfb5a47-ea06-4645-8582-ce11f5517fb4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-056899014837619129503729", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3dfb5a47-ea06-4645-8582-ce11f5517fb4", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-056899014837619129503729", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3dfb5a47-ea06-4645-8582-ce11f5517fb4" ] + }, + "id" : "urn:uuid:2ca423d5-2a47-4624-b8e2-84e992206932" + } ] + }, { + "catenaXId" : "urn:uuid:d16d3485-92a6-408b-b1ec-102412315acb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d16d3485-92a6-408b-b1ec-102412315acb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-997488426011598967307393", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d16d3485-92a6-408b-b1ec-102412315acb", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-997488426011598967307393", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d16d3485-92a6-408b-b1ec-102412315acb" ] + }, + "id" : "urn:uuid:d84e2190-ead8-4df0-9fe2-c9a230595525" + } ] + }, { + "catenaXId" : "urn:uuid:7b6f48f0-48db-4825-8fb2-aadecb0fd5b0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7b6f48f0-48db-4825-8fb2-aadecb0fd5b0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-730169950076826281958271", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7b6f48f0-48db-4825-8fb2-aadecb0fd5b0", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-730169950076826281958271", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7b6f48f0-48db-4825-8fb2-aadecb0fd5b0" ] + }, + "id" : "urn:uuid:fdab052a-896e-4de9-99d5-3b1a895b38ae" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b", + "childItems" : [ { + "catenaXId" : "urn:uuid:18fe6906-3c9c-44fc-852d-9ffdcc99e1e2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-895735153909028177432301", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-895735153909028177432301", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b" ] + }, + "id" : "urn:uuid:084d042b-bbc5-4aa0-a62d-c965d3586763" + } ] + }, { + "catenaXId" : "urn:uuid:18fe6906-3c9c-44fc-852d-9ffdcc99e1e2", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18fe6906-3c9c-44fc-852d-9ffdcc99e1e2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-913811080721842531912956", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18fe6906-3c9c-44fc-852d-9ffdcc99e1e2", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-913811080721842531912956", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:18fe6906-3c9c-44fc-852d-9ffdcc99e1e2" ] + }, + "id" : "urn:uuid:15cb7eb4-6e95-471f-9184-50591dc2fdb3" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c", + "childItems" : [ { + "catenaXId" : "urn:uuid:16cc0157-a0ff-4389-b69f-07b6fe3c9a73", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-011544699974436688506505", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-011544699974436688506505", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c" ] + }, + "id" : "urn:uuid:bb842aac-a2dd-4a52-9e45-78bef5e8277f" + } ] + }, { + "catenaXId" : "urn:uuid:16cc0157-a0ff-4389-b69f-07b6fe3c9a73", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:16cc0157-a0ff-4389-b69f-07b6fe3c9a73" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-115743228024807548273147", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:16cc0157-a0ff-4389-b69f-07b6fe3c9a73", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-115743228024807548273147", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:16cc0157-a0ff-4389-b69f-07b6fe3c9a73" ] + }, + "id" : "urn:uuid:b661f11d-5c3d-4d0d-a672-5d9d535d1a72" + } ] + }, { + "catenaXId" : "urn:uuid:c6109698-9d76-467e-b126-136cda9583a1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c6109698-9d76-467e-b126-136cda9583a1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-569169874127352975835155", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c6109698-9d76-467e-b126-136cda9583a1", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-569169874127352975835155", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c6109698-9d76-467e-b126-136cda9583a1" ] + }, + "id" : "urn:uuid:4fc8b97b-20cc-4e21-9570-c63604e657f1" + } ] + }, { + "catenaXId" : "urn:uuid:5e804f47-4831-414c-96db-43fa1438174c", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5e804f47-4831-414c-96db-43fa1438174c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-375402645922334845308716", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5e804f47-4831-414c-96db-43fa1438174c", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-375402645922334845308716", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5e804f47-4831-414c-96db-43fa1438174c" ] + }, + "id" : "urn:uuid:2e1d9bbc-61c2-4149-80d6-7bc17c2c5205" + } ] + }, { + "catenaXId" : "urn:uuid:33f01141-bc0f-475d-9c8e-0cf2121c4556", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:33f01141-bc0f-475d-9c8e-0cf2121c4556" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-740356010438459065366005", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:33f01141-bc0f-475d-9c8e-0cf2121c4556", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-740356010438459065366005", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:33f01141-bc0f-475d-9c8e-0cf2121c4556" ] + }, + "id" : "urn:uuid:71bd0504-953d-4df6-ad20-afb27bf50662" + } ] + }, { + "catenaXId" : "urn:uuid:6bfaa801-4ade-4d5b-9be6-659f7ece61ee", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6bfaa801-4ade-4d5b-9be6-659f7ece61ee" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-904558562150472279731995", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6bfaa801-4ade-4d5b-9be6-659f7ece61ee", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-904558562150472279731995", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6bfaa801-4ade-4d5b-9be6-659f7ece61ee" ] + }, + "id" : "urn:uuid:38c09e8a-f28c-4681-9764-c93036312ad8" + } ] + }, { + "catenaXId" : "urn:uuid:402a1282-877d-4450-b20d-1ac2b5d29824", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:402a1282-877d-4450-b20d-1ac2b5d29824" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-765671426149464168792358", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:402a1282-877d-4450-b20d-1ac2b5d29824", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-765671426149464168792358", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:402a1282-877d-4450-b20d-1ac2b5d29824" ] + }, + "id" : "urn:uuid:acc17880-1dc1-4736-b9d5-43590b93965a" + } ] + }, { + "catenaXId" : "urn:uuid:c2a913ef-9d54-4610-b786-ad70a9570e40", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c2a913ef-9d54-4610-b786-ad70a9570e40" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-527311814850132096841887", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c2a913ef-9d54-4610-b786-ad70a9570e40", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-527311814850132096841887", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c2a913ef-9d54-4610-b786-ad70a9570e40" ] + }, + "id" : "urn:uuid:70419dd7-e403-4b44-bf5b-473d86871af2" + } ] + }, { + "catenaXId" : "urn:uuid:e43847f4-7dbd-40b3-85c9-98ef8c7240c6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e43847f4-7dbd-40b3-85c9-98ef8c7240c6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-659730258660721037073375", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e43847f4-7dbd-40b3-85c9-98ef8c7240c6", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-659730258660721037073375", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e43847f4-7dbd-40b3-85c9-98ef8c7240c6" ] + }, + "id" : "urn:uuid:c3fd4a4b-683e-4ea9-bf2a-6f32b3cc067a" + } ] + }, { + "catenaXId" : "urn:uuid:8c14cd71-2f6c-448f-9713-fa0a13bb85c1", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8c14cd71-2f6c-448f-9713-fa0a13bb85c1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-866848599064371080146749", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8c14cd71-2f6c-448f-9713-fa0a13bb85c1", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-866848599064371080146749", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8c14cd71-2f6c-448f-9713-fa0a13bb85c1" ] + }, + "id" : "urn:uuid:114c3571-b1ee-40e3-bebc-6f1296e2d760" + } ] + }, { + "catenaXId" : "urn:uuid:a7d6c254-f9f6-4533-95f2-1432a1851b42", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a7d6c254-f9f6-4533-95f2-1432a1851b42" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-594332359876834618328768", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a7d6c254-f9f6-4533-95f2-1432a1851b42", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-594332359876834618328768", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a7d6c254-f9f6-4533-95f2-1432a1851b42" ] + }, + "id" : "urn:uuid:e56b1d3c-69f2-49a0-a9e2-2256210b31d3" + } ] + }, { + "catenaXId" : "urn:uuid:8f3f417f-af9b-46e8-915b-304c582abe9b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8f3f417f-af9b-46e8-915b-304c582abe9b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-429951894644866388358638", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f3f417f-af9b-46e8-915b-304c582abe9b", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-429951894644866388358638", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8f3f417f-af9b-46e8-915b-304c582abe9b" ] + }, + "id" : "urn:uuid:97c0c1bd-55e0-4256-a8bc-2af11f9c95d9" + } ] + }, { + "catenaXId" : "urn:uuid:c847fb7a-4c76-4aa0-9170-f422ec3c4dc3", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c847fb7a-4c76-4aa0-9170-f422ec3c4dc3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-471829346596498825093647", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c847fb7a-4c76-4aa0-9170-f422ec3c4dc3", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-471829346596498825093647", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c847fb7a-4c76-4aa0-9170-f422ec3c4dc3" ] + }, + "id" : "urn:uuid:a7c07eab-c7bb-4c6f-850e-c47d1421120d" + } ] + }, { + "catenaXId" : "urn:uuid:d6ae50cd-4b04-4e6b-8ed2-8f0a8f38cec2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d6ae50cd-4b04-4e6b-8ed2-8f0a8f38cec2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-691096632427584901402362", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d6ae50cd-4b04-4e6b-8ed2-8f0a8f38cec2", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-691096632427584901402362", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d6ae50cd-4b04-4e6b-8ed2-8f0a8f38cec2" ] + }, + "id" : "urn:uuid:d9c3cff3-9ab5-4da0-b99a-46c3c105c42e" + } ] + }, { + "catenaXId" : "urn:uuid:6afbd9ce-4796-4268-ad46-47fe9487968d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6afbd9ce-4796-4268-ad46-47fe9487968d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-994748380137301545530377", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6afbd9ce-4796-4268-ad46-47fe9487968d", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-994748380137301545530377", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6afbd9ce-4796-4268-ad46-47fe9487968d" ] + }, + "id" : "urn:uuid:9cbed3ff-9b8a-4883-8995-14352d1bd81c" + } ] + }, { + "catenaXId" : "urn:uuid:688e3a45-596a-4f5d-b5ac-cba79e2843ee", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:688e3a45-596a-4f5d-b5ac-cba79e2843ee" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-026922880427654408561725", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:688e3a45-596a-4f5d-b5ac-cba79e2843ee", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-026922880427654408561725", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:688e3a45-596a-4f5d-b5ac-cba79e2843ee" ] + }, + "id" : "urn:uuid:318ffc8a-88fc-4cf4-8f80-7167e03a8bd5" + } ] + }, { + "catenaXId" : "urn:uuid:20d9781b-be2b-4375-9653-45aea945638d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:20d9781b-be2b-4375-9653-45aea945638d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-640161727405607837034977", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:20d9781b-be2b-4375-9653-45aea945638d", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-640161727405607837034977", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:20d9781b-be2b-4375-9653-45aea945638d" ] + }, + "id" : "urn:uuid:7569a2ba-684d-479b-af29-9dec9d3fada0" + } ] + }, { + "catenaXId" : "urn:uuid:213c6064-127a-46c4-905d-37a82bc367a8", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:213c6064-127a-46c4-905d-37a82bc367a8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-486148882059194297751274", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:213c6064-127a-46c4-905d-37a82bc367a8", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-486148882059194297751274", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:213c6064-127a-46c4-905d-37a82bc367a8" ] + }, + "id" : "urn:uuid:71b9c82f-fb6d-4b78-af6c-7826bfd17576" + } ] + }, { + "catenaXId" : "urn:uuid:028cf02c-0687-4a87-aa87-c38c74af04ea", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:028cf02c-0687-4a87-aa87-c38c74af04ea" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-285717204589829815228089", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:028cf02c-0687-4a87-aa87-c38c74af04ea", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-285717204589829815228089", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:028cf02c-0687-4a87-aa87-c38c74af04ea" ] + }, + "id" : "urn:uuid:a09fcc22-ce4f-448c-b4b2-96a7156b344a" + } ] + }, { + "catenaXId" : "urn:uuid:cd8b0275-15cb-4aac-8a2b-f56757c716d6", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cd8b0275-15cb-4aac-8a2b-f56757c716d6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-201606096693175441560613", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd8b0275-15cb-4aac-8a2b-f56757c716d6", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-201606096693175441560613", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cd8b0275-15cb-4aac-8a2b-f56757c716d6" ] + }, + "id" : "urn:uuid:268aa16d-1958-499e-b835-801544aa7d0d" + } ] + }, { + "catenaXId" : "urn:uuid:0616945c-0c35-465c-935c-ef8cc9c9ef57", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0616945c-0c35-465c-935c-ef8cc9c9ef57" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-565135927785650079199425", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0616945c-0c35-465c-935c-ef8cc9c9ef57", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-565135927785650079199425", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0616945c-0c35-465c-935c-ef8cc9c9ef57" ] + }, + "id" : "urn:uuid:bae3e478-22a7-47ea-835d-92852677a9f2" + } ] + }, { + "catenaXId" : "urn:uuid:d4d9be86-d529-4cb8-a484-d6ba58f58562", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d4d9be86-d529-4cb8-a484-d6ba58f58562" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-742830636256151721543639", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d4d9be86-d529-4cb8-a484-d6ba58f58562", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-742830636256151721543639", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d4d9be86-d529-4cb8-a484-d6ba58f58562" ] + }, + "id" : "urn:uuid:02c67865-6381-4fb5-8edc-1c42334d71e1" + } ] + }, { + "catenaXId" : "urn:uuid:45bbe2ee-d1b2-41be-b0af-62b5214c80ae", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:45bbe2ee-d1b2-41be-b0af-62b5214c80ae" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-528742019849094361239293", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:45bbe2ee-d1b2-41be-b0af-62b5214c80ae", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-528742019849094361239293", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:45bbe2ee-d1b2-41be-b0af-62b5214c80ae" ] + }, + "id" : "urn:uuid:93059763-d990-4793-bcea-cc5e0abd254e" + } ] + }, { + "catenaXId" : "urn:uuid:e58a0fd7-9a83-4027-8bb1-e028d2aa67cb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e58a0fd7-9a83-4027-8bb1-e028d2aa67cb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-506732165380403905549576", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e58a0fd7-9a83-4027-8bb1-e028d2aa67cb", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-506732165380403905549576", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e58a0fd7-9a83-4027-8bb1-e028d2aa67cb" ] + }, + "id" : "urn:uuid:46063717-4a09-45ea-9d9c-4a796b990121" + } ] + }, { + "catenaXId" : "urn:uuid:92a205c4-2623-404c-9cf3-33b136995fef", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:92a205c4-2623-404c-9cf3-33b136995fef" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-691361343747102430426387", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:92a205c4-2623-404c-9cf3-33b136995fef", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-691361343747102430426387", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:92a205c4-2623-404c-9cf3-33b136995fef" ] + }, + "id" : "urn:uuid:325f46a4-92d8-41a7-9223-7967051367e0" + } ] + }, { + "catenaXId" : "urn:uuid:b8c4a37d-0e14-4f6c-8d93-254edc742d7d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b8c4a37d-0e14-4f6c-8d93-254edc742d7d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-971901488431287226817733", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b8c4a37d-0e14-4f6c-8d93-254edc742d7d", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-971901488431287226817733", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b8c4a37d-0e14-4f6c-8d93-254edc742d7d" ] + }, + "id" : "urn:uuid:fb6be130-363f-486b-9dd1-1057fab1985c" + } ] + }, { + "catenaXId" : "urn:uuid:43cd2be5-6e55-4f4b-8206-23ca1970f765", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:43cd2be5-6e55-4f4b-8206-23ca1970f765" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-956466802065979622957038", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:43cd2be5-6e55-4f4b-8206-23ca1970f765", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-956466802065979622957038", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:43cd2be5-6e55-4f4b-8206-23ca1970f765" ] + }, + "id" : "urn:uuid:17aff09b-fd09-4cda-87f2-b1ef7d976e0e" + } ] + }, { + "catenaXId" : "urn:uuid:73fd5254-6c3e-4893-9d0d-aaecaa82d3f2", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:73fd5254-6c3e-4893-9d0d-aaecaa82d3f2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-628198204889764200543684", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:73fd5254-6c3e-4893-9d0d-aaecaa82d3f2", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-628198204889764200543684", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:73fd5254-6c3e-4893-9d0d-aaecaa82d3f2" ] + }, + "id" : "urn:uuid:be51abea-f482-4e48-b712-6704fe73f238" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", + "childItems" : [ { + "catenaXId" : "urn:uuid:226e3a68-f426-4336-9a8a-749392e573c0", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6f2f87ab-4d50-4f1e-a7c2-10b7ee8ebfed", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-171784789966120127922479", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-171784789966120127922479", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-171784789966120127922479", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb" ] + }, + "id" : "urn:uuid:7f4936ef-8f48-4794-956f-8a32064bc0c9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 55, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 32, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 72, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:226e3a68-f426-4336-9a8a-749392e573c0", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:226e3a68-f426-4336-9a8a-749392e573c0" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "32602F1-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-523862706081843000713478", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:226e3a68-f426-4336-9a8a-749392e573c0", + "partTypeInformation" : { + "manufacturerPartId" : "32602F1-87", + "customerPartId" : "32602F1-87", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 67, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 47, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58", + "childItems" : [ { + "catenaXId" : "urn:uuid:220aa390-1d75-4054-a13a-989be84494a9", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "91141C0-91", + "key" : "manufacturerPartId" + }, { + "value" : "NO-088227105134940997925699", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58", + "partTypeInformation" : { + "manufacturerPartId" : "91141C0-91", + "customerPartId" : "91141C0-91", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-088227105134940997925699", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "91141C0-91", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58" ] + }, + "id" : "urn:uuid:fef91c08-3ddd-479a-9a7a-acfb3c3347d8" + } ] + }, { + "catenaXId" : "urn:uuid:220aa390-1d75-4054-a13a-989be84494a9", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:220aa390-1d75-4054-a13a-989be84494a9" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "77893L8-58", + "key" : "manufacturerPartId" + }, { + "value" : "NO-555136251661352748347669", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:220aa390-1d75-4054-a13a-989be84494a9", + "partTypeInformation" : { + "manufacturerPartId" : "77893L8-58", + "customerPartId" : "77893L8-58", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 19, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6f2f87ab-4d50-4f1e-a7c2-10b7ee8ebfed", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:6f2f87ab-4d50-4f1e-a7c2-10b7ee8ebfed", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f2f87ab-4d50-4f1e-a7c2-10b7ee8ebfed" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "12145S0-62", + "key" : "manufacturerPartId" + }, { + "value" : "NO-047333786003626473144547", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f2f87ab-4d50-4f1e-a7c2-10b7ee8ebfed", + "partTypeInformation" : { + "manufacturerPartId" : "12145S0-62", + "customerPartId" : "12145S0-62", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd082e40-921f-4edc-a0ef-1ba537037e52", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:99838ebb-ef4b-4c46-92b7-0c49da1add4e", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "70857C2-70", + "key" : "manufacturerPartId" + }, { + "value" : "NO-029159313962494342542153", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2", + "partTypeInformation" : { + "manufacturerPartId" : "70857C2-70", + "customerPartId" : "70857C2-70", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-029159313962494342542153", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "70857C2-70", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2" ] + }, + "id" : "urn:uuid:c352e09a-8ad9-4693-8899-f3ea76b45fde" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 7, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:fd082e40-921f-4edc-a0ef-1ba537037e52", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fd082e40-921f-4edc-a0ef-1ba537037e52" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "20536R7-14", + "key" : "manufacturerPartId" + }, { + "value" : "NO-460577308492190348133402", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fd082e40-921f-4edc-a0ef-1ba537037e52", + "partTypeInformation" : { + "manufacturerPartId" : "20536R7-14", + "customerPartId" : "20536R7-14", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 17, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 83, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6", + "childItems" : [ { + "catenaXId" : "urn:uuid:a645261b-6959-49ea-b499-263697b0d439", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "57469L3-12", + "key" : "manufacturerPartId" + }, { + "value" : "NO-367881290751270910583069", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6", + "partTypeInformation" : { + "manufacturerPartId" : "57469L3-12", + "customerPartId" : "57469L3-12", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-367881290751270910583069", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57469L3-12", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6" ] + }, + "id" : "urn:uuid:32b00621-685b-4587-b435-65aae0b81df9" + } ] + }, { + "catenaXId" : "urn:uuid:a645261b-6959-49ea-b499-263697b0d439", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a645261b-6959-49ea-b499-263697b0d439" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "44276J0-88", + "key" : "manufacturerPartId" + }, { + "value" : "NO-423140004885900642126127", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a645261b-6959-49ea-b499-263697b0d439", + "partTypeInformation" : { + "manufacturerPartId" : "44276J0-88", + "customerPartId" : "44276J0-88", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 46, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 82, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:99838ebb-ef4b-4c46-92b7-0c49da1add4e", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:99838ebb-ef4b-4c46-92b7-0c49da1add4e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "52704Y4-12", + "key" : "manufacturerPartId" + }, { + "value" : "NO-867145931344050459957244", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:99838ebb-ef4b-4c46-92b7-0c49da1add4e", + "partTypeInformation" : { + "manufacturerPartId" : "52704Y4-12", + "customerPartId" : "52704Y4-12", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-867145931344050459957244", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "52704Y4-12", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:99838ebb-ef4b-4c46-92b7-0c49da1add4e" ] + }, + "id" : "urn:uuid:aaa5fd4c-6cff-498c-9d70-131650d5a72c" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 25, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 48, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-067508748760824766575653", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-067508748760824766575653", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba" ] + }, + "id" : "urn:uuid:d30375d3-c8d9-4afa-888d-e27792844d54" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 48, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 68, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 33, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-138015770193088389483509", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-138015770193088389483509", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, + "id" : "urn:uuid:8113712e-8d56-414b-9176-95e47a3d7894" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 8, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 70, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 54, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-204613220891055482255928", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-204613220891055482255928", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8" ] + }, + "id" : "urn:uuid:3b754d04-03f5-48ff-87b2-8da9eabb3372" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-09T23:41:39.756Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T22:53:36.756Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-748196682989761628319085", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-748196682989761628319085", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc" ] + }, + "id" : "urn:uuid:2e415442-1ddb-4acc-9b7f-1f3c987be8c9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-21T02:03:44.766Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T15:09:46.766Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-621680016929602880044112", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-621680016929602880044112", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c" ] + }, + "id" : "urn:uuid:76ed6b72-00b3-42f7-b02a-8b6f4734b2e7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-25T20:37:08.775Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T18:22:48.775Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-424124545080551647290784", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-424124545080551647290784", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f" ] + }, + "id" : "urn:uuid:742702ed-bee7-4da8-a86e-9d48f2292920" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-02T18:11:31.785Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T21:02:00.785Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-415153959469715419262194", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-415153959469715419262194", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e" ] + }, + "id" : "urn:uuid:8499d293-570a-4bd8-9051-dbc6813bb18a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-04T02:57:05.795Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T15:03:27.795Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-176819797724494810640821", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-176819797724494810640821", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c" ] + }, + "id" : "urn:uuid:49066e0a-3b75-4cd7-b896-be3e4a14515e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-19T11:26:53.805Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T11:02:35.805Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-785708996254775960152683", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-785708996254775960152683", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b" ] + }, + "id" : "urn:uuid:f761d640-67ce-4b40-a7b3-3dcad0c4e5a3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-07-19T17:54:20.815Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T10:15:38.815Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-467672025892524398346548", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-467672025892524398346548", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28" ] + }, + "id" : "urn:uuid:cfabbc91-711f-4515-b794-a59b640f0463" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-22T23:07:13.825Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T17:12:05.825Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-601625289231444747290202", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-601625289231444747290202", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68" ] + }, + "id" : "urn:uuid:5fdc3c87-b533-46c1-bb86-645960017c56" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-21T16:42:05.834Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T13:28:23.834Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-606564968693953867775384", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-606564968693953867775384", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca" ] + }, + "id" : "urn:uuid:e9a71896-4f90-4d42-bfed-1a667ba044ed" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-09T21:56:25.844Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T00:33:14.844Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-757418888057128630202741", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-757418888057128630202741", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, + "id" : "urn:uuid:702eac3c-b4ef-428a-8360-8e0f3f237292" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 5, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 31, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 2, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-314072412833602686955463", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-314072412833602686955463", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499" ] + }, + "id" : "urn:uuid:7faec6ff-c17e-4569-8e08-734ffeb7ef8d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-19T20:32:52.864Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T23:41:39.864Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-888801341902011191851576", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-888801341902011191851576", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe" ] + }, + "id" : "urn:uuid:7031f68f-aa3d-47cd-9038-55a0e8bf2bb0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-19T21:21:39.873Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T00:29:17.873Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-527926540873267314714761", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-527926540873267314714761", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6" ] + }, + "id" : "urn:uuid:9a3188f4-54b7-46da-9324-422f3532dc33" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-05T06:17:36.882Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T19:42:24.882Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-444889750069350140484113", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-444889750069350140484113", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e" ] + }, + "id" : "urn:uuid:2ebcd958-b440-41e9-b278-65f2b273e6ff" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-13T13:11:55.892Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T03:01:00.892Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-847436380100657892595295", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-847436380100657892595295", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67" ] + }, + "id" : "urn:uuid:572a2fbb-dc76-4c95-89d6-60dd59c9549c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-25T09:37:28.901Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T14:43:12.901Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-633617037918737401595737", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-633617037918737401595737", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7" ] + }, + "id" : "urn:uuid:0e3ddf78-0dc1-4092-a91a-727ec464b168" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-19T03:30:39.912Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T15:07:22.912Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-824132822664855631839351", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-824132822664855631839351", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c" ] + }, + "id" : "urn:uuid:2ccb88f4-cf8d-4a36-b016-1395b23f1e9a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-24T18:15:34.924Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T06:58:18.924Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-668493653383513430178339", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-668493653383513430178339", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434" ] + }, + "id" : "urn:uuid:62a325d2-dbcf-4343-bd25-137b90c941ed" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-09T22:49:12.933Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T23:24:26.933Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-594443196583325127185516", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-594443196583325127185516", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3" ] + }, + "id" : "urn:uuid:1206b9c5-a293-47eb-8d7f-5deb0ea75b21" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-09T14:48:58.943Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T07:37:59.943Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-579422889932945747350067", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-579422889932945747350067", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408" ] + }, + "id" : "urn:uuid:33ed6a48-2b4c-4703-a28a-0479f417434a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-09T19:12:05.954Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T09:49:51.954Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-254658608719860954968620", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-254658608719860954968620", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, + "id" : "urn:uuid:29d74048-610e-44e6-93b7-5d221e3305e2" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 85, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 23, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 40, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-857335358121165656998423", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-857335358121165656998423", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea" ] + }, + "id" : "urn:uuid:b6cdd8c3-e5c7-4456-81dd-c95a40b4bf4e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-10-21T15:52:21.977Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T16:45:50.977Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-027726786122705987197266", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-027726786122705987197266", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa" ] + }, + "id" : "urn:uuid:5212594c-c77d-4183-af2d-7c5166286a83" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-13T07:55:40.990Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T20:59:09.990Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-997305998065873496826146", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-997305998065873496826146", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068" ] + }, + "id" : "urn:uuid:884af03e-f81f-4301-b133-cc44a4c956ab" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-22T23:51:35.002Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T22:23:00.002Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-876533437489672310010507", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-876533437489672310010507", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914" ] + }, + "id" : "urn:uuid:4d354001-5630-4b1f-ac45-550275b869b6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-17T19:52:20.014Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T13:32:51.014Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-416638399716389196664304", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-416638399716389196664304", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978" ] + }, + "id" : "urn:uuid:6c7cd75e-ab3c-4bea-b12d-3869f8267a74" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-28T19:25:34.026Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T23:26:22.026Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-498857862404379211109533", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-498857862404379211109533", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa" ] + }, + "id" : "urn:uuid:d40aa848-9b1f-4bf8-a99c-24183d9c7dd3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-03-22T12:29:04.038Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T00:56:36.038Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-671460581828194578827786", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-671460581828194578827786", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53" ] + }, + "id" : "urn:uuid:ba39bd9a-843f-4079-8c32-a9ac6105c31c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-05T09:04:09.051Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T17:42:42.051Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-032234183999768166842993", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-032234183999768166842993", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30" ] + }, + "id" : "urn:uuid:5f8c3bb8-b893-4680-81f6-35616b3c6f0e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-27T22:27:11.064Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T05:15:39.064Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-463975403899529965041669", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-463975403899529965041669", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96" ] + }, + "id" : "urn:uuid:7c42299a-b0d3-4edf-ad6d-1227906d87da" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-03T12:20:07.075Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T05:25:03.075Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-748914616364023990513648", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-748914616364023990513648", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d" ] + }, + "id" : "urn:uuid:c248e0bd-4f42-4b03-9f55-a7e1f757d1e6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-04T03:02:46.089Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T03:53:04.089Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-885082042835239105158981", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-885082042835239105158981", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, + "id" : "urn:uuid:1c217c7b-740f-4fdd-843e-a92231d6617b" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 33, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 7, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 71, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-503296041568696310760447", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-503296041568696310760447", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced" ] + }, + "id" : "urn:uuid:d8657e70-6fee-4266-b197-01db02707dac" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-17T05:40:09.116Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T18:00:36.116Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-992183871961467387283047", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-992183871961467387283047", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa" ] + }, + "id" : "urn:uuid:4a6860cd-8905-466f-8fb3-185524c57cea" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-01T17:10:38.130Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T17:19:22.130Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-593922176761729707417395", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-593922176761729707417395", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf" ] + }, + "id" : "urn:uuid:95468523-3ecd-45b4-9670-0f9302f5ae36" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-24T10:33:17.143Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T15:13:18.143Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-969054673797967272055840", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-969054673797967272055840", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a" ] + }, + "id" : "urn:uuid:452291e5-d989-49f6-8dfa-2f6f35bc0b6b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-08T01:49:19.155Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T14:00:09.155Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-228224285535770435667737", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-228224285535770435667737", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c" ] + }, + "id" : "urn:uuid:b96ae03d-b39b-40cd-bff8-678dc7c76df5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-18T05:48:46.167Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T20:10:19.168Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-821774436775989811200425", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-821774436775989811200425", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda" ] + }, + "id" : "urn:uuid:cc623856-a190-4f9d-8263-3c953c799368" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-13T16:53:13.181Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T18:36:01.181Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-815545869238655361806605", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-815545869238655361806605", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad" ] + }, + "id" : "urn:uuid:03349349-b01a-428f-9833-4b250fbf5cbd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-15T08:40:25.197Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T12:48:42.197Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-611255850899043062160247", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-611255850899043062160247", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688" ] + }, + "id" : "urn:uuid:ef54ce6f-49f9-41cc-b80f-4b69eab9cee7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-13T11:59:47.210Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T10:58:25.210Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-284205927976665656400118", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-284205927976665656400118", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b" ] + }, + "id" : "urn:uuid:8d2c99e3-4c40-4cd9-b7a8-5cde3d832dfa" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-11T19:08:17.233Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T07:15:42.233Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-940255083809006497861855", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-940255083809006497861855", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2" ] + }, + "id" : "urn:uuid:152feabd-de0c-4d55-91b2-49cbd553fd6f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-12-04T09:37:32.245Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T00:41:19.245Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-833847969319282872762755", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-833847969319282872762755", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, + "id" : "urn:uuid:c5512e8e-cc94-445f-8a4c-f95de1996ff3" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 22, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 40, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 69, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-941571424835522178320756", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-941571424835522178320756", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578" ] + }, + "id" : "urn:uuid:148ed2f6-5f93-4ecc-acbf-fcf14cf79ca1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-08T21:52:24.270Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T06:59:41.270Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-595711609805753738075965", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-595711609805753738075965", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695" ] + }, + "id" : "urn:uuid:967f40ca-54ea-4df3-846a-290587df464b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-25T17:25:19.280Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T13:54:03.280Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-252785414050608486876236", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-252785414050608486876236", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1" ] + }, + "id" : "urn:uuid:9417d615-4e5f-4319-96af-5207442da8f1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-30T23:57:53.292Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T20:32:09.292Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-197577489367030883095595", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-197577489367030883095595", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c" ] + }, + "id" : "urn:uuid:7051ac47-9205-4e8b-a279-0cff7418b0b8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-05-10T08:01:52.367Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T23:28:14.367Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-082635820392538997615212", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-082635820392538997615212", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925" ] + }, + "id" : "urn:uuid:6b88f158-717a-4d4e-84f9-3d77930c44b5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-15T20:03:30.381Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T14:37:48.381Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-924434813907034373864883", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-924434813907034373864883", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f" ] + }, + "id" : "urn:uuid:85181d65-e259-4713-a789-2df90ce173ed" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-12-11T18:05:41.391Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T03:55:33.391Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-185808656181413143113665", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-185808656181413143113665", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2" ] + }, + "id" : "urn:uuid:af9a07b9-d19b-4905-bb2b-0d0e5f5e04da" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-13T15:26:20.401Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T20:19:55.401Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-629206347453407477974364", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-629206347453407477974364", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2" ] + }, + "id" : "urn:uuid:fa37a3f6-1e77-477f-9600-81b7e87c816a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-09-06T02:00:46.410Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T19:24:09.410Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-207930870025067223557789", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-207930870025067223557789", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e" ] + }, + "id" : "urn:uuid:81bc3485-4d31-418d-af35-a3b4faf77d29" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-06-07T08:54:39.420Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T15:25:30.420Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-887849794520049612466439", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-887849794520049612466439", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b" ] + }, + "id" : "urn:uuid:780a603b-a9aa-453d-a3df-196f41538af4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-12T23:52:30.429Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T20:47:20.429Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-131073442420892485108607", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-131073442420892485108607", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, + "id" : "urn:uuid:2c0ee305-bc63-4be2-a9e5-852bdf347f21" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 6, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 86, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 86, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-295619500382554188489945", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-295619500382554188489945", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b" ] + }, + "id" : "urn:uuid:bda0adc7-275e-4826-9957-fbf7ebcb3f44" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-15T23:26:26.448Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T03:31:47.448Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-777156504445842701914533", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-777156504445842701914533", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006" ] + }, + "id" : "urn:uuid:3da01667-e2fe-4e1f-bbc8-630c03168b45" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-01T17:31:10.457Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T07:24:50.457Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-075490616784135688465935", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-075490616784135688465935", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db" ] + }, + "id" : "urn:uuid:669f7ea5-85dc-4729-9afc-e34bee0bd4a1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-03-11T03:08:06.465Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T18:08:26.465Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-561271766952605321421299", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-561271766952605321421299", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49" ] + }, + "id" : "urn:uuid:a912e0ba-835e-4512-ab13-66568a0c283d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-29T04:39:24.474Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T07:53:52.474Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-418433499359240989178486", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-418433499359240989178486", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f" ] + }, + "id" : "urn:uuid:d8ae5f33-e9b6-4dac-91e1-3d1a7de2268d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-03T05:52:33.483Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T16:38:31.483Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-712716981637833372355432", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-712716981637833372355432", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12" ] + }, + "id" : "urn:uuid:b48117f0-3d8f-4230-b51f-0d40854acc29" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-03-04T22:43:05.492Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T09:20:06.492Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-580209613827774085803098", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-580209613827774085803098", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f" ] + }, + "id" : "urn:uuid:896f2dd3-a577-4982-8f8e-2fc661a6e258" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-05-06T07:23:36.505Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T10:30:08.505Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-911806473516778107199103", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-911806473516778107199103", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d" ] + }, + "id" : "urn:uuid:825118f3-591d-4132-9c43-c3f0ac867d8f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-12T01:50:01.516Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T09:05:38.516Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-884568895028249499454180", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-884568895028249499454180", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86" ] + }, + "id" : "urn:uuid:4a17b1e1-d388-4aaf-b194-52c826dbc67c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-22T10:01:51.528Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T14:40:44.528Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-275402433339444479982222", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-275402433339444479982222", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86" ] + }, + "id" : "urn:uuid:a29938ca-738a-474d-ac42-5e55ea35db44" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-08T07:36:30.548Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T06:56:57.548Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "engine" : { + "size" : 2998, + "power" : 152 + }, + "emptyWeight" : 1.79, + "fuel" : "hybrid petrol/electric", + "vehicleModel" : "Vehicle Hybrid", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "childItems" : [ { + "catenaXId" : "urn:uuid:a35a7b36-a84e-4730-af58-818e95e1151a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:355f4608-3f67-4d2f-9128-fcf5fd63f603", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f5560b4a-5b31-4ea4-bf87-b151406f99c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c481c5f4-9964-4719-b593-b1c4b074c2b0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3bc2e32a-2acc-4f9f-a2a8-7f82a27ea86e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ce61739e-d257-4c52-879c-700d6bf74473", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8b401c1e-8249-4408-be4b-c498ce365201", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:970133f5-f8e7-40de-a30f-03a51821d6af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d684bf7c-e3c2-4f63-931c-62ca29d53432", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:faa134b5-b18b-483e-92cf-766463f54d15", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:652dbf9f-340c-45be-8b9e-4cea6dfaf8b9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7f083b3-b920-44d8-835c-afdf315e9be7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:16644601-04b0-4dd4-8ac1-107a454af160", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:540abe25-385a-494e-a8c6-cc0c5e1e3c23", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b1cb2ab5-f878-4832-9769-ea6400f69833", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:db3e45c4-49f2-4b40-bb0c-289a91ef430d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:67b866ae-dada-4898-a5fa-c54bcd03fa84", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ef7cb20a-aa86-462b-b2e7-6e4216887961", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b352c9a6-8ce4-4ec7-89d5-77bee402cdd7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7314031a-a6ae-4a93-be51-89c0d18f2836", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:519d731d-c5af-4b3e-ba5c-8ee519b72381", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f4207530-7f08-4c3f-a216-6a4bf344ca8e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:08a4bc67-25d1-4d50-8791-8a16d3e2feaa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4e4556b7-8dec-488d-8e56-340423db48bd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2367aa96-84b0-4e44-9784-f361ee9c189b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9e0b3452-97f4-4ef0-ad1d-334c2db1d8eb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:89c0070b-335e-4ed0-b613-c2cf27308621", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ac945b98-2365-4fcf-8f33-476092472d4f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fb5e67c6-6b03-4bf6-bb6b-29ba5c1cbddb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12c7e3aa-3dca-4391-a11e-c8d66629a9c4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "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" + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "BB-63", + "key" : "manufacturerPartId" + }, { + "value" : "OMCLUYLNIYRAIQVIM", + "key" : "partInstanceId" + }, { + "value" : "OMCLUYLNIYRAIQVIM", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2017-08-15T22:34:17.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "partTypeInformation" : { + "manufacturerPartId" : "BB-63", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Hybrid" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCLUYLNIYRAIQVIM", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "BB-63", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_hybrid.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Hybrid" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, + "id" : "urn:uuid:d22495f2-2ec8-4dc6-b2b3-2548067df4f1" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 79, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 51, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 44, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 84, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 50, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 67, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 21, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 33, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 1, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 41, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a35a7b36-a84e-4730-af58-818e95e1151a", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a35a7b36-a84e-4730-af58-818e95e1151a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-613513154051334266050072", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a35a7b36-a84e-4730-af58-818e95e1151a", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-613513154051334266050072", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a35a7b36-a84e-4730-af58-818e95e1151a" ] + }, + "id" : "urn:uuid:94c41434-e056-4673-9f85-90cb18500a7b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:355f4608-3f67-4d2f-9128-fcf5fd63f603", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:355f4608-3f67-4d2f-9128-fcf5fd63f603" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-053783765119478161123574", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:355f4608-3f67-4d2f-9128-fcf5fd63f603", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-053783765119478161123574", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:355f4608-3f67-4d2f-9128-fcf5fd63f603" ] + }, + "id" : "urn:uuid:e121940e-8549-405a-ac32-a7e709d816e9" + } ] + }, { + "catenaXId" : "urn:uuid:f5560b4a-5b31-4ea4-bf87-b151406f99c0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f5560b4a-5b31-4ea4-bf87-b151406f99c0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-404375045135278417703266", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f5560b4a-5b31-4ea4-bf87-b151406f99c0", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-404375045135278417703266", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f5560b4a-5b31-4ea4-bf87-b151406f99c0" ] + }, + "id" : "urn:uuid:1256d927-44c5-49b2-a09a-b022b0a3bfa2" + } ] + }, { + "catenaXId" : "urn:uuid:c481c5f4-9964-4719-b593-b1c4b074c2b0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c481c5f4-9964-4719-b593-b1c4b074c2b0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-772832917473183158675691", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c481c5f4-9964-4719-b593-b1c4b074c2b0", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-772832917473183158675691", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c481c5f4-9964-4719-b593-b1c4b074c2b0" ] + }, + "id" : "urn:uuid:2f4ad65a-7926-416d-8143-d0ea3e175b57" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6", + "childItems" : [ { + "catenaXId" : "urn:uuid:98ac4634-bbc6-4e0c-9351-99a50d0eea31", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-884366443297780430960106", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-884366443297780430960106", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6" ] + }, + "id" : "urn:uuid:0d96596f-e7ff-48d8-ada0-3ef4c673593a" + } ] + }, { + "catenaXId" : "urn:uuid:98ac4634-bbc6-4e0c-9351-99a50d0eea31", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:98ac4634-bbc6-4e0c-9351-99a50d0eea31" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-926182404122580328489557", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:98ac4634-bbc6-4e0c-9351-99a50d0eea31", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-926182404122580328489557", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:98ac4634-bbc6-4e0c-9351-99a50d0eea31" ] + }, + "id" : "urn:uuid:cae85dcb-13ab-4332-aa34-d5dc88034dd8" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0", + "childItems" : [ { + "catenaXId" : "urn:uuid:d6fca6e1-30ef-48e6-81bb-5a9034712ef8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-653420650200292286411619", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-653420650200292286411619", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0" ] + }, + "id" : "urn:uuid:f88dcca6-d0ea-44d4-bedb-bd55f57b5acf" + } ] + }, { + "catenaXId" : "urn:uuid:d6fca6e1-30ef-48e6-81bb-5a9034712ef8", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d6fca6e1-30ef-48e6-81bb-5a9034712ef8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-760105713019505315051598", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d6fca6e1-30ef-48e6-81bb-5a9034712ef8", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-760105713019505315051598", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d6fca6e1-30ef-48e6-81bb-5a9034712ef8" ] + }, + "id" : "urn:uuid:34487669-8647-4478-88d5-0b04065750dd" + } ] + }, { + "catenaXId" : "urn:uuid:3bc2e32a-2acc-4f9f-a2a8-7f82a27ea86e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3bc2e32a-2acc-4f9f-a2a8-7f82a27ea86e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-107294969536522995381817", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3bc2e32a-2acc-4f9f-a2a8-7f82a27ea86e", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-107294969536522995381817", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3bc2e32a-2acc-4f9f-a2a8-7f82a27ea86e" ] + }, + "id" : "urn:uuid:b3255a70-7638-4465-8110-93221fabc8ef" + } ] + }, { + "catenaXId" : "urn:uuid:ce61739e-d257-4c52-879c-700d6bf74473", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ce61739e-d257-4c52-879c-700d6bf74473" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-694148261064161924438931", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ce61739e-d257-4c52-879c-700d6bf74473", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-694148261064161924438931", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ce61739e-d257-4c52-879c-700d6bf74473" ] + }, + "id" : "urn:uuid:39b3943f-f110-46b1-951d-5ae6babd4024" + } ] + }, { + "catenaXId" : "urn:uuid:8b401c1e-8249-4408-be4b-c498ce365201", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8b401c1e-8249-4408-be4b-c498ce365201" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-990644257399735395697910", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8b401c1e-8249-4408-be4b-c498ce365201", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-990644257399735395697910", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8b401c1e-8249-4408-be4b-c498ce365201" ] + }, + "id" : "urn:uuid:6fc6cd49-d235-44f7-85f9-a41b34694f9b" + } ] + }, { + "catenaXId" : "urn:uuid:970133f5-f8e7-40de-a30f-03a51821d6af", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:970133f5-f8e7-40de-a30f-03a51821d6af" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-645496895323387438816706", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:970133f5-f8e7-40de-a30f-03a51821d6af", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-645496895323387438816706", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:970133f5-f8e7-40de-a30f-03a51821d6af" ] + }, + "id" : "urn:uuid:100214ea-0176-40e2-8b55-23f188c4f3e6" + } ] + }, { + "catenaXId" : "urn:uuid:d684bf7c-e3c2-4f63-931c-62ca29d53432", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d684bf7c-e3c2-4f63-931c-62ca29d53432" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-310109416554918679880288", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d684bf7c-e3c2-4f63-931c-62ca29d53432", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-310109416554918679880288", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d684bf7c-e3c2-4f63-931c-62ca29d53432" ] + }, + "id" : "urn:uuid:43e66dfb-ae36-4f72-9fae-13f9ab4f06f7" + } ] + }, { + "catenaXId" : "urn:uuid:faa134b5-b18b-483e-92cf-766463f54d15", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:faa134b5-b18b-483e-92cf-766463f54d15" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-663884820676882611616990", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:faa134b5-b18b-483e-92cf-766463f54d15", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-663884820676882611616990", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:faa134b5-b18b-483e-92cf-766463f54d15" ] + }, + "id" : "urn:uuid:8063224b-9ff9-4b45-ae2d-171ce65b0279" + } ] + }, { + "catenaXId" : "urn:uuid:652dbf9f-340c-45be-8b9e-4cea6dfaf8b9", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:652dbf9f-340c-45be-8b9e-4cea6dfaf8b9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-101310827440125616309910", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:652dbf9f-340c-45be-8b9e-4cea6dfaf8b9", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-101310827440125616309910", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:652dbf9f-340c-45be-8b9e-4cea6dfaf8b9" ] + }, + "id" : "urn:uuid:3a6114d7-f04d-4c6f-9135-7a7ca8946c3a" + } ] + }, { + "catenaXId" : "urn:uuid:f7f083b3-b920-44d8-835c-afdf315e9be7", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f7f083b3-b920-44d8-835c-afdf315e9be7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-034164463969973631856774", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f7f083b3-b920-44d8-835c-afdf315e9be7", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-034164463969973631856774", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f7f083b3-b920-44d8-835c-afdf315e9be7" ] + }, + "id" : "urn:uuid:e85c7ff8-e062-49e6-a4bb-e62308df78f5" + } ] + }, { + "catenaXId" : "urn:uuid:16644601-04b0-4dd4-8ac1-107a454af160", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:16644601-04b0-4dd4-8ac1-107a454af160" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-267832513028447997121950", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:16644601-04b0-4dd4-8ac1-107a454af160", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-267832513028447997121950", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:16644601-04b0-4dd4-8ac1-107a454af160" ] + }, + "id" : "urn:uuid:80720c47-f846-4567-9b59-22f28e9b70e3" + } ] + }, { + "catenaXId" : "urn:uuid:540abe25-385a-494e-a8c6-cc0c5e1e3c23", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:540abe25-385a-494e-a8c6-cc0c5e1e3c23" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-639763499699010447007289", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:540abe25-385a-494e-a8c6-cc0c5e1e3c23", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-639763499699010447007289", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:540abe25-385a-494e-a8c6-cc0c5e1e3c23" ] + }, + "id" : "urn:uuid:eca2de6d-637a-4636-bed2-c9a6f7e81b06" + } ] + }, { + "catenaXId" : "urn:uuid:b1cb2ab5-f878-4832-9769-ea6400f69833", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b1cb2ab5-f878-4832-9769-ea6400f69833" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-448970057595531692436388", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b1cb2ab5-f878-4832-9769-ea6400f69833", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-448970057595531692436388", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b1cb2ab5-f878-4832-9769-ea6400f69833" ] + }, + "id" : "urn:uuid:38b888a9-1e7c-40bf-b191-8f6f31cb1d84" + } ] + }, { + "catenaXId" : "urn:uuid:db3e45c4-49f2-4b40-bb0c-289a91ef430d", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:db3e45c4-49f2-4b40-bb0c-289a91ef430d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-010810932883359166793794", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:db3e45c4-49f2-4b40-bb0c-289a91ef430d", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-010810932883359166793794", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:db3e45c4-49f2-4b40-bb0c-289a91ef430d" ] + }, + "id" : "urn:uuid:c6148938-4089-4b19-91c2-e310c9ac317a" + } ] + }, { + "catenaXId" : "urn:uuid:67b866ae-dada-4898-a5fa-c54bcd03fa84", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:67b866ae-dada-4898-a5fa-c54bcd03fa84" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-735718904254626945609429", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:67b866ae-dada-4898-a5fa-c54bcd03fa84", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-735718904254626945609429", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:67b866ae-dada-4898-a5fa-c54bcd03fa84" ] + }, + "id" : "urn:uuid:e2333294-5271-4264-b1a6-1bb6448cf7a3" + } ] + }, { + "catenaXId" : "urn:uuid:ef7cb20a-aa86-462b-b2e7-6e4216887961", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ef7cb20a-aa86-462b-b2e7-6e4216887961" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-431185681807360341462173", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ef7cb20a-aa86-462b-b2e7-6e4216887961", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-431185681807360341462173", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ef7cb20a-aa86-462b-b2e7-6e4216887961" ] + }, + "id" : "urn:uuid:3b75f943-347c-4b34-9162-2c247c68afda" + } ] + }, { + "catenaXId" : "urn:uuid:b352c9a6-8ce4-4ec7-89d5-77bee402cdd7", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b352c9a6-8ce4-4ec7-89d5-77bee402cdd7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-309000457681920500820696", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b352c9a6-8ce4-4ec7-89d5-77bee402cdd7", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-309000457681920500820696", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b352c9a6-8ce4-4ec7-89d5-77bee402cdd7" ] + }, + "id" : "urn:uuid:645d124d-d622-4b0e-a684-ea8c6c2f9e0b" + } ] + }, { + "catenaXId" : "urn:uuid:7314031a-a6ae-4a93-be51-89c0d18f2836", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7314031a-a6ae-4a93-be51-89c0d18f2836" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-239203887964559907770219", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7314031a-a6ae-4a93-be51-89c0d18f2836", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-239203887964559907770219", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7314031a-a6ae-4a93-be51-89c0d18f2836" ] + }, + "id" : "urn:uuid:bde72203-7e5c-48bc-b781-060bc561f6b2" + } ] + }, { + "catenaXId" : "urn:uuid:519d731d-c5af-4b3e-ba5c-8ee519b72381", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:519d731d-c5af-4b3e-ba5c-8ee519b72381" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-853820539202725508768552", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:519d731d-c5af-4b3e-ba5c-8ee519b72381", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-853820539202725508768552", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:519d731d-c5af-4b3e-ba5c-8ee519b72381" ] + }, + "id" : "urn:uuid:4e1aaa78-8ca0-4769-a12c-01d8290e003b" + } ] + }, { + "catenaXId" : "urn:uuid:f4207530-7f08-4c3f-a216-6a4bf344ca8e", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f4207530-7f08-4c3f-a216-6a4bf344ca8e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-063411750496142781671266", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f4207530-7f08-4c3f-a216-6a4bf344ca8e", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-063411750496142781671266", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f4207530-7f08-4c3f-a216-6a4bf344ca8e" ] + }, + "id" : "urn:uuid:89eeff80-12e9-47ba-80c1-32252486d00b" + } ] + }, { + "catenaXId" : "urn:uuid:08a4bc67-25d1-4d50-8791-8a16d3e2feaa", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:08a4bc67-25d1-4d50-8791-8a16d3e2feaa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-724834863643063498916029", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:08a4bc67-25d1-4d50-8791-8a16d3e2feaa", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-724834863643063498916029", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:08a4bc67-25d1-4d50-8791-8a16d3e2feaa" ] + }, + "id" : "urn:uuid:b95575f9-7fe5-4079-a264-fd7d0e0fb674" + } ] + }, { + "catenaXId" : "urn:uuid:4e4556b7-8dec-488d-8e56-340423db48bd", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4e4556b7-8dec-488d-8e56-340423db48bd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-297748333444125649525182", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4e4556b7-8dec-488d-8e56-340423db48bd", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-297748333444125649525182", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4e4556b7-8dec-488d-8e56-340423db48bd" ] + }, + "id" : "urn:uuid:10d8ce3c-8217-4e17-b0f0-f48966fff52c" + } ] + }, { + "catenaXId" : "urn:uuid:2367aa96-84b0-4e44-9784-f361ee9c189b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2367aa96-84b0-4e44-9784-f361ee9c189b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-190631475618154071482282", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2367aa96-84b0-4e44-9784-f361ee9c189b", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-190631475618154071482282", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2367aa96-84b0-4e44-9784-f361ee9c189b" ] + }, + "id" : "urn:uuid:4b94d2e5-4f02-48e3-821c-bc0b6b25635a" + } ] + }, { + "catenaXId" : "urn:uuid:9e0b3452-97f4-4ef0-ad1d-334c2db1d8eb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9e0b3452-97f4-4ef0-ad1d-334c2db1d8eb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-378444602612604871901287", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e0b3452-97f4-4ef0-ad1d-334c2db1d8eb", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-378444602612604871901287", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9e0b3452-97f4-4ef0-ad1d-334c2db1d8eb" ] + }, + "id" : "urn:uuid:464b3d12-559f-4a70-b29b-285574678273" + } ] + }, { + "catenaXId" : "urn:uuid:89c0070b-335e-4ed0-b613-c2cf27308621", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:89c0070b-335e-4ed0-b613-c2cf27308621" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-945669856982688434772854", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:89c0070b-335e-4ed0-b613-c2cf27308621", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-945669856982688434772854", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:89c0070b-335e-4ed0-b613-c2cf27308621" ] + }, + "id" : "urn:uuid:46f2c6b0-63a6-4fd7-9f64-432b9b6ba7d7" + } ] + }, { + "catenaXId" : "urn:uuid:ac945b98-2365-4fcf-8f33-476092472d4f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ac945b98-2365-4fcf-8f33-476092472d4f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-579363561192652082265189", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ac945b98-2365-4fcf-8f33-476092472d4f", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-579363561192652082265189", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ac945b98-2365-4fcf-8f33-476092472d4f" ] + }, + "id" : "urn:uuid:f3650840-8102-4fa0-92c1-71b7c0c2db0e" + } ] + }, { + "catenaXId" : "urn:uuid:fb5e67c6-6b03-4bf6-bb6b-29ba5c1cbddb", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fb5e67c6-6b03-4bf6-bb6b-29ba5c1cbddb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-943461894663848087991623", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fb5e67c6-6b03-4bf6-bb6b-29ba5c1cbddb", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-943461894663848087991623", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:fb5e67c6-6b03-4bf6-bb6b-29ba5c1cbddb" ] + }, + "id" : "urn:uuid:f73b1145-f00b-492e-97f0-f26a0417ea26" + } ] + }, { + "catenaXId" : "urn:uuid:12c7e3aa-3dca-4391-a11e-c8d66629a9c4", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:12c7e3aa-3dca-4391-a11e-c8d66629a9c4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-034931532627065619293591", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:12c7e3aa-3dca-4391-a11e-c8d66629a9c4", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-034931532627065619293591", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:12c7e3aa-3dca-4391-a11e-c8d66629a9c4" ] + }, + "id" : "urn:uuid:9971ea28-eb42-47cd-b027-0f5cf5d4597c" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", + "childItems" : [ { + "catenaXId" : "urn:uuid:b5cba17a-396d-48c1-a7f4-d9eafbeb287c", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b4e69125-e78f-4417-9151-bd718e47b8ab", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-854363102538690714359757", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-854363102538690714359757", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-854363102538690714359757", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a" ] + }, + "id" : "urn:uuid:26681405-b2cf-42fc-aefc-e5b059de696e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 52, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 25, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 53, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b5cba17a-396d-48c1-a7f4-d9eafbeb287c", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b5cba17a-396d-48c1-a7f4-d9eafbeb287c" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "15336V5-31", + "key" : "manufacturerPartId" + }, { + "value" : "NO-225612471471424677073548", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b5cba17a-396d-48c1-a7f4-d9eafbeb287c", + "partTypeInformation" : { + "manufacturerPartId" : "15336V5-31", + "customerPartId" : "15336V5-31", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 59, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 2, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88", + "childItems" : [ { + "catenaXId" : "urn:uuid:c908e6db-2895-43b8-872d-96632dae7406", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "51471I2-85", + "key" : "manufacturerPartId" + }, { + "value" : "NO-557080865335676641761446", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88", + "partTypeInformation" : { + "manufacturerPartId" : "51471I2-85", + "customerPartId" : "51471I2-85", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-557080865335676641761446", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "51471I2-85", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88" ] + }, + "id" : "urn:uuid:699162e5-12d1-496b-9187-c0e856188dc7" + } ] + }, { + "catenaXId" : "urn:uuid:c908e6db-2895-43b8-872d-96632dae7406", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c908e6db-2895-43b8-872d-96632dae7406" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "88807T4-34", + "key" : "manufacturerPartId" + }, { + "value" : "NO-916719816216112985633646", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c908e6db-2895-43b8-872d-96632dae7406", + "partTypeInformation" : { + "manufacturerPartId" : "88807T4-34", + "customerPartId" : "88807T4-34", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 68, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 23, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b4e69125-e78f-4417-9151-bd718e47b8ab", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:b4e69125-e78f-4417-9151-bd718e47b8ab", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b4e69125-e78f-4417-9151-bd718e47b8ab" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "51044P6-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-112483138088344673121267", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b4e69125-e78f-4417-9151-bd718e47b8ab", + "partTypeInformation" : { + "manufacturerPartId" : "51044P6-64", + "customerPartId" : "51044P6-64", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431", + "childItems" : [ { + "catenaXId" : "urn:uuid:d9a3c72c-290b-4e79-93e0-81a55a719371", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fdc2f314-5d51-4124-89fe-f3e6ca029c54", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "28357J0-26", + "key" : "manufacturerPartId" + }, { + "value" : "NO-581890266279687671813440", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431", + "partTypeInformation" : { + "manufacturerPartId" : "28357J0-26", + "customerPartId" : "28357J0-26", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-581890266279687671813440", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28357J0-26", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431" ] + }, + "id" : "urn:uuid:f075870c-4ac7-4dcd-84a6-15762d1e9086" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 51, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d9a3c72c-290b-4e79-93e0-81a55a719371", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d9a3c72c-290b-4e79-93e0-81a55a719371" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "36647H1-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-590258083055396555549207", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d9a3c72c-290b-4e79-93e0-81a55a719371", + "partTypeInformation" : { + "manufacturerPartId" : "36647H1-04", + "customerPartId" : "36647H1-04", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 49, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 2, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb", + "childItems" : [ { + "catenaXId" : "urn:uuid:b006db33-ac4f-43d2-b14a-5c8d0f0ddf74", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "80358C9-95", + "key" : "manufacturerPartId" + }, { + "value" : "NO-980976221888679780130204", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb", + "partTypeInformation" : { + "manufacturerPartId" : "80358C9-95", + "customerPartId" : "80358C9-95", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-980976221888679780130204", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "80358C9-95", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb" ] + }, + "id" : "urn:uuid:d337644a-6420-474a-8dc3-81ebe29d3fb7" + } ] + }, { + "catenaXId" : "urn:uuid:b006db33-ac4f-43d2-b14a-5c8d0f0ddf74", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b006db33-ac4f-43d2-b14a-5c8d0f0ddf74" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "32108X8-39", + "key" : "manufacturerPartId" + }, { + "value" : "NO-875076101893775483986888", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b006db33-ac4f-43d2-b14a-5c8d0f0ddf74", + "partTypeInformation" : { + "manufacturerPartId" : "32108X8-39", + "customerPartId" : "32108X8-39", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 15, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 30, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:fdc2f314-5d51-4124-89fe-f3e6ca029c54", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fdc2f314-5d51-4124-89fe-f3e6ca029c54" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "96895X4-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-138263061921476950249347", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fdc2f314-5d51-4124-89fe-f3e6ca029c54", + "partTypeInformation" : { + "manufacturerPartId" : "96895X4-73", + "customerPartId" : "96895X4-73", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-138263061921476950249347", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "96895X4-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fdc2f314-5d51-4124-89fe-f3e6ca029c54" ] + }, + "id" : "urn:uuid:1a8bd793-c5ee-4e3b-bbeb-59879a65127b" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 19, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 78, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "childItems" : [ { + "catenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-924036800357290405824370", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-924036800357290405824370", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0" ] + }, + "id" : "urn:uuid:34fc5cc8-e117-4fc5-91b7-0178755e9652" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 64, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 48, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 7, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-098389730724086286587111", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-098389730724086286587111", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, + "id" : "urn:uuid:d7ecf150-1948-4f6a-91fd-42749cc62834" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 73, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 21, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 65, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-563782273942403759633952", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-563782273942403759633952", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f" ] + }, + "id" : "urn:uuid:1fc304a8-2336-4418-bb50-a47dd3e17dfc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-03T11:12:17.708Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T18:31:52.708Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-169228378795311900476788", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-169228378795311900476788", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c" ] + }, + "id" : "urn:uuid:05498a1e-f59e-4100-8f52-e727a2d59ab1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-03T14:55:04.719Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T16:12:27.719Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-070799837295011561271598", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-070799837295011561271598", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41" ] + }, + "id" : "urn:uuid:0b7f7db2-2ad6-4f49-b712-165b3cc10f66" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-10-08T11:38:56.733Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T06:14:14.733Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-932319867322025627386842", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-932319867322025627386842", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4" ] + }, + "id" : "urn:uuid:0d9ed6d6-e2b9-430c-9126-b76a92263d6c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-01-27T18:13:17.744Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T02:41:54.744Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-687135638776200030422840", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-687135638776200030422840", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823" ] + }, + "id" : "urn:uuid:a8c4c82d-6b18-4884-88c1-720bd9b96682" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-02T04:25:47.755Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T07:24:44.755Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-261261518081346683215262", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-261261518081346683215262", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220" ] + }, + "id" : "urn:uuid:34df6b58-04ae-40a6-9a16-4bc6fb3dd7db" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-09-08T04:54:51.766Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T13:06:33.766Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-270118164491577287181587", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-270118164491577287181587", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950" ] + }, + "id" : "urn:uuid:6b9f6f28-eb8f-4034-b41c-ab28ffb3a986" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-27T11:49:43.778Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T04:06:02.778Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-710065453242945601486984", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-710065453242945601486984", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee" ] + }, + "id" : "urn:uuid:473bc20c-4867-4e34-8cb7-246036c5ca23" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-20T20:14:13.789Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T21:05:04.789Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-611453644190378812791695", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-611453644190378812791695", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665" ] + }, + "id" : "urn:uuid:afe0d5bd-2a75-47d4-b64f-6841adafd015" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-02T02:12:25.800Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T12:21:49.800Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-657103855955561720710611", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-657103855955561720710611", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2" ] + }, + "id" : "urn:uuid:7264bf68-1c29-4e98-95ab-1d026bce5a4c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-19T10:30:37.812Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T13:16:22.812Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-602658649877492161495772", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-602658649877492161495772", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, + "id" : "urn:uuid:2490ca9c-d80d-4fe8-8e5f-1037cf891ecf" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 15, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 84, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 58, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-796237685223591848544643", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-796237685223591848544643", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281" ] + }, + "id" : "urn:uuid:8b8f722e-243c-4651-93d8-661783dad064" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-24T22:26:07.835Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T09:10:01.835Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-854524725271578135745703", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-854524725271578135745703", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6" ] + }, + "id" : "urn:uuid:641efa29-2d59-4c27-ae7b-642f0a8cac1d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-17T08:06:16.846Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T03:07:38.846Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-730193356625281849375653", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-730193356625281849375653", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b" ] + }, + "id" : "urn:uuid:4d9cac74-26e6-43f7-8968-73601add71e1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-03T00:07:42.857Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T23:54:49.857Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-401712158827922717844102", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-401712158827922717844102", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845" ] + }, + "id" : "urn:uuid:50f3490e-07f0-4834-9473-77c49d18372c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-25T10:37:51.868Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T15:02:03.868Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-950039651149370429800210", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-950039651149370429800210", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f" ] + }, + "id" : "urn:uuid:da0265db-2179-4fed-9e9f-0fc4b527c8fa" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-05-13T22:59:59.878Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T09:05:01.878Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-352608093443066747521357", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-352608093443066747521357", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e" ] + }, + "id" : "urn:uuid:4b47f752-6a7b-4687-a2fe-ba1e2f5353b9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-30T13:40:46.887Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T02:00:02.887Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-186163598552759711320035", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-186163598552759711320035", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c" ] + }, + "id" : "urn:uuid:5e283aa0-d480-4865-b9ab-0e247a3357e6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-11T16:28:54.896Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T15:28:25.896Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-751219316630926501389389", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-751219316630926501389389", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379" ] + }, + "id" : "urn:uuid:e2f761b5-354b-4fca-bc0b-5ee76f70c94e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-01T04:00:08.905Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T04:02:24.905Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-406274869765986098815991", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-406274869765986098815991", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50" ] + }, + "id" : "urn:uuid:00e3bfb5-6f72-4a02-8196-49534a1b5fa8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-04-06T12:51:01.915Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T16:31:26.915Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-038785098324376216871376", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-038785098324376216871376", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405" ] + }, + "id" : "urn:uuid:51dcb3f7-7a7f-418f-8b7a-b88812153d78" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-07T20:54:39.925Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T10:41:48.925Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-454339659968888442244065", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-454339659968888442244065", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, + "id" : "urn:uuid:9bdb3119-41ce-4d23-a17d-616a661ab053" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 73, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 30, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 2, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-851920423355554156870161", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-851920423355554156870161", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3" ] + }, + "id" : "urn:uuid:13ee473a-d3b4-465c-9a3c-3083ba84b236" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-06T13:18:31.944Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T12:15:49.944Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-802924439776418839130334", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-802924439776418839130334", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0" ] + }, + "id" : "urn:uuid:4e236e93-cf58-4cf7-b559-71484bf62e8c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-21T12:01:40.953Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T08:09:53.953Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-932281307460294544336724", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-932281307460294544336724", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819" ] + }, + "id" : "urn:uuid:0e633f62-4434-492d-ab93-bebf659e6886" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-08-21T17:15:50.963Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T04:51:45.963Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-243635516813298046679033", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-243635516813298046679033", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996" ] + }, + "id" : "urn:uuid:e9e752ff-fa7b-44cb-a081-ef227d342718" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-18T17:05:51.972Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T10:05:26.972Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-202323268223110146818840", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-202323268223110146818840", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117" ] + }, + "id" : "urn:uuid:f79d2a09-d580-417e-bc9e-4525eb08d56d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-26T07:41:59.981Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T06:06:21.981Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-159735600819307744520503", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-159735600819307744520503", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f" ] + }, + "id" : "urn:uuid:a550e250-8bd0-4bd0-beac-606b040798c1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-23T23:29:36.990Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T21:09:29.990Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-300345897579298644597745", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-300345897579298644597745", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c" ] + }, + "id" : "urn:uuid:51fa6ef2-393f-4add-98ef-3fe3d1507b3a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-24T16:29:54.999Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T19:10:01.999Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-019211504334670745641434", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-019211504334670745641434", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727" ] + }, + "id" : "urn:uuid:88067a4e-0903-40b1-b4df-a857d67c0132" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-19T06:28:57.008Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T11:09:44.008Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-438643522776249729665498", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-438643522776249729665498", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735" ] + }, + "id" : "urn:uuid:dda1fc60-a032-45c3-839b-5bf23874a6cf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-06T19:23:25.017Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T11:47:47.017Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-133504528300097087676512", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-133504528300097087676512", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78" ] + }, + "id" : "urn:uuid:275d96f8-ad10-41f5-a9fc-21d362d19ba9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-07-14T07:52:23.026Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T02:21:12.026Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-786535268056439704087982", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-786535268056439704087982", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, + "id" : "urn:uuid:bdcbdf00-5a71-4568-a740-49956a72cc46" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 59, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 2, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 11, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-273546306869993344746788", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-273546306869993344746788", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f" ] + }, + "id" : "urn:uuid:d86429d8-d385-425c-9ae5-485534987243" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-12-23T21:48:55.045Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T16:11:44.045Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-600220846613194117987260", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-600220846613194117987260", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13" ] + }, + "id" : "urn:uuid:fc1708ad-a925-44ec-af52-68c946d474b4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-17T03:53:46.054Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T18:09:20.054Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-270049772099893273908838", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-270049772099893273908838", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9" ] + }, + "id" : "urn:uuid:c4297432-aa64-492d-ae85-8973277b9198" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-04T05:07:17.063Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T16:07:12.063Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-298359211191849534305143", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-298359211191849534305143", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2" ] + }, + "id" : "urn:uuid:cc8f2367-69e1-45ca-92ad-7dcecc083859" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-19T17:19:04.072Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T02:04:13.072Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-248372716452492959478186", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-248372716452492959478186", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b" ] + }, + "id" : "urn:uuid:6887478a-58fb-4e93-97c1-8e7b968d0447" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-17T02:47:45.081Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T07:05:17.081Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-551947009314047314164084", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-551947009314047314164084", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d" ] + }, + "id" : "urn:uuid:e95afb8c-435f-4f51-9997-e467882bfa50" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-01T17:34:32.090Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T16:10:49.090Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-297140876622832786355789", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-297140876622832786355789", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b" ] + }, + "id" : "urn:uuid:fe80c476-2cb1-4d8d-8938-05da1c8938fd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-15T01:52:27.100Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T12:51:52.100Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-372880109804344259347688", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-372880109804344259347688", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7" ] + }, + "id" : "urn:uuid:e185c257-ae66-47e2-aeb9-1956350d3e0e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-19T02:26:03.109Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T06:24:34.109Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-145427483471166900962441", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-145427483471166900962441", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae" ] + }, + "id" : "urn:uuid:53b4c318-65e5-4bd1-a665-2a9289b7ae04" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-21T14:12:39.118Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T18:45:25.118Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-219190239583473694314972", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-219190239583473694314972", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda" ] + }, + "id" : "urn:uuid:8fd5ff05-8099-46a2-933b-712aa16e49e9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-11T10:16:09.127Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T09:32:04.127Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-471549773571693618760711", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-471549773571693618760711", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, + "id" : "urn:uuid:e90343ee-0d79-4253-ae6f-1d7320bae7cc" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 66, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 65, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 53, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-875226521894821879615861", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-875226521894821879615861", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb" ] + }, + "id" : "urn:uuid:abd47073-014b-4f3c-8774-d3eeda02e692" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-01T00:58:14.146Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T16:22:38.146Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-751361154500519772186982", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-751361154500519772186982", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412" ] + }, + "id" : "urn:uuid:a291fed3-1eb3-4505-bbbf-8f440a8528c0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-18T08:52:37.155Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T10:45:40.155Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-749503953105355568658821", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-749503953105355568658821", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26" ] + }, + "id" : "urn:uuid:f259118d-7b86-4cb2-9ecc-8c0fd318b3e3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-23T02:42:10.164Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T09:10:47.164Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-599032411045371762031277", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-599032411045371762031277", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905" ] + }, + "id" : "urn:uuid:5a66c4da-83b5-496f-82c3-452e10a05486" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-15T19:59:14.173Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T16:27:30.173Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-930459731759363948514923", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-930459731759363948514923", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462" ] + }, + "id" : "urn:uuid:5636ffdd-3417-425c-bfed-778e82756628" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-04-12T04:31:39.182Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T02:40:51.182Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-812828847834528790914271", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-812828847834528790914271", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c" ] + }, + "id" : "urn:uuid:ae9ca579-e329-4a71-8760-a78445b0ff93" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-03T00:42:35.191Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T15:57:25.191Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-946180320118928903956023", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-946180320118928903956023", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9" ] + }, + "id" : "urn:uuid:0c0613dd-952f-4b9b-8b62-9e564200d63d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-24T21:22:51.200Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T10:56:30.200Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-532676312774814506015831", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-532676312774814506015831", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d" ] + }, + "id" : "urn:uuid:2ab1ed96-0dfb-4a7c-a404-7ae7bbfcf282" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-25T19:21:43.209Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T15:05:48.209Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-535487470583515760792858", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-535487470583515760792858", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d" ] + }, + "id" : "urn:uuid:08308ab9-d4a5-4626-ac94-f22c35f6fbb5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-12-09T22:45:36.219Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T12:18:46.219Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-525923959797594870551976", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-525923959797594870551976", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622" ] + }, + "id" : "urn:uuid:05e659b8-a6ee-4e16-8ba2-a81c230d39bd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-03-31T11:25:18.231Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T13:09:09.231Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-575309115128802804786780", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-575309115128802804786780", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, + "id" : "urn:uuid:46666a4b-d7cc-4ad2-9696-73697374e18a" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 89, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 59, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 9, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-785129852538001054061919", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-785129852538001054061919", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7" ] + }, + "id" : "urn:uuid:069c6692-eb3b-4867-85f3-0f5f909f82b7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-15T09:15:19.250Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T09:06:54.250Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-289758613416144953927558", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-289758613416144953927558", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2" ] + }, + "id" : "urn:uuid:7f37e67e-26a9-404c-9e48-dcb56f21b37f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-13T17:59:22.259Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T22:37:34.259Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-353839868349055692567641", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-353839868349055692567641", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b" ] + }, + "id" : "urn:uuid:382e291d-927c-497a-b09c-12400f7e668a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-04-08T05:48:59.268Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T13:46:32.268Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-093287872852272393085144", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-093287872852272393085144", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f" ] + }, + "id" : "urn:uuid:fcb8967e-eb47-4e4d-b41e-bcce76afe9a5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-19T07:44:08.299Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T14:43:46.299Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-222605967345671492185729", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-222605967345671492185729", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef" ] + }, + "id" : "urn:uuid:8e0f93b9-3bc5-4913-b0fc-94cd7fb02117" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-28T05:03:22.308Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T10:12:27.308Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-109587253314247120058243", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-109587253314247120058243", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a" ] + }, + "id" : "urn:uuid:f903988d-e1b1-48df-90a8-5d5d2ae4b7bb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-05T23:49:29.318Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T11:52:18.318Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-611807668133344306284376", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-611807668133344306284376", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c" ] + }, + "id" : "urn:uuid:5fab51b7-bb72-4989-a3ae-37f316baf689" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-22T20:03:47.327Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T06:24:29.327Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-772458406045917207870833", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-772458406045917207870833", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51" ] + }, + "id" : "urn:uuid:c14783e4-5939-47d4-acae-a96f8429ffff" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-04-16T03:36:41.336Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T11:10:35.336Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-320241926245628144384772", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-320241926245628144384772", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1" ] + }, + "id" : "urn:uuid:46056719-b1cb-409a-a7b0-317ebb637b53" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-26T10:59:53.345Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T19:49:59.345Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-438788933448558312002513", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-438788933448558312002513", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059" ] + }, + "id" : "urn:uuid:c60a1bb1-93aa-44dc-8b3b-d43596bdde34" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-16T22:13:23.354Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T12:13:18.354Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "engine" : { + "size" : 2998, + "power" : 152 + }, + "emptyWeight" : 1.79, + "fuel" : "hybrid petrol/electric", + "vehicleModel" : "Vehicle Hybrid", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + }, { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "childItems" : [ { + "catenaXId" : "urn:uuid:3bb1ab5c-4735-456c-b082-ff32fcce53c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c5c96b95-8645-47b0-889b-5cae83bb31fb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ad902944-cacd-4b87-b880-aadd4e0102fd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b115975c-5782-42d4-a130-615faf60d0d1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7e5b255-f19d-4a34-a632-a6c2a266c148", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:741682ea-f384-4ad3-ab3e-0d6d9b1c03d2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2a117941-9566-407c-82d4-5c6d26c7a820", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5d4be00d-f4aa-4fde-ad20-79898702b19a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a86753ef-d526-42e4-9c03-cbab94f10d73", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d11bea26-eefc-471b-a06e-c9669a153dd3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:402766de-9419-4c90-9106-af80d5a99b01", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:deed575e-59df-4d77-94b1-0c2e4a3bf15e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a9830aae-8a30-452a-8b74-cb4bf64469b7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7eb9c492-8bc4-4429-b1f9-b8c8cf2a9f17", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ecfc696b-1c8d-4b77-9955-023f139b8322", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:72f5c8f6-2687-4ba0-a9d3-20eab0c44946", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1bcd563f-cce1-4805-9b41-138f72c14a7d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b56ddd6-d64d-432b-bcdb-3ef349dd42be", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e49a69f9-470a-4356-aab3-d7f7d52967a5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:28264837-efc0-4b4a-ab20-882910a2e174", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:27068f44-96e6-4532-8945-816c22b106c9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:db8946a7-ab3d-45ee-a345-c49726021a0c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af0050e5-7268-4ccf-9ae0-20468d372810", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:378ac667-0b78-4584-8cc9-f86b0717a5db", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cfa90568-2e8d-4de7-9ed9-d73c4b0df0e4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7e3ce380-be74-4159-912a-462a0eb425a1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1f90d132-820c-4ceb-b36f-1a319f67a039", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:886e51c5-974b-4630-bcd1-c9f5827d3144", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:776b5497-1d21-4d91-ad4e-c781579eb3d0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0096184b-a46a-42cf-9a8a-bef41ff6704e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "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" + } ], + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "VJ-77", + "key" : "manufacturerPartId" + }, { + "value" : "OMBUZOFRBCRZKYPRJ", + "key" : "partInstanceId" + }, { + "value" : "OMBUZOFRBCRZKYPRJ", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2019-02-15T02:02:11.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "partTypeInformation" : { + "manufacturerPartId" : "VJ-77", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Hybrid" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMBUZOFRBCRZKYPRJ", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "VJ-77", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_hybrid.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Hybrid" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, + "id" : "urn:uuid:a1ebef0d-fe08-4cbe-9256-5f42866e9b4a" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 44, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 39, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 40, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 81, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 82, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 51, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 33, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 21, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 83, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 18, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:3bb1ab5c-4735-456c-b082-ff32fcce53c0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3bb1ab5c-4735-456c-b082-ff32fcce53c0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-248916951383486499106529", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3bb1ab5c-4735-456c-b082-ff32fcce53c0", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-248916951383486499106529", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3bb1ab5c-4735-456c-b082-ff32fcce53c0" ] + }, + "id" : "urn:uuid:f9ae4aa3-d2b0-4e9b-a051-bc4e25086072" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:c5c96b95-8645-47b0-889b-5cae83bb31fb", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c5c96b95-8645-47b0-889b-5cae83bb31fb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-132779277766298391413297", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c5c96b95-8645-47b0-889b-5cae83bb31fb", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-132779277766298391413297", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c5c96b95-8645-47b0-889b-5cae83bb31fb" ] + }, + "id" : "urn:uuid:f3d00be3-53ce-44f6-b769-d867ffb96570" + } ] + }, { + "catenaXId" : "urn:uuid:ad902944-cacd-4b87-b880-aadd4e0102fd", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ad902944-cacd-4b87-b880-aadd4e0102fd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-048682338240379601086699", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ad902944-cacd-4b87-b880-aadd4e0102fd", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-048682338240379601086699", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ad902944-cacd-4b87-b880-aadd4e0102fd" ] + }, + "id" : "urn:uuid:3a864deb-5637-4578-9c18-45558d9531d0" + } ] + }, { + "catenaXId" : "urn:uuid:b115975c-5782-42d4-a130-615faf60d0d1", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b115975c-5782-42d4-a130-615faf60d0d1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-108073222393893843955927", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b115975c-5782-42d4-a130-615faf60d0d1", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-108073222393893843955927", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:b115975c-5782-42d4-a130-615faf60d0d1" ] + }, + "id" : "urn:uuid:6f796154-c193-437b-9c26-543913d0acd2" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5", + "childItems" : [ { + "catenaXId" : "urn:uuid:73cd3a10-4017-4eee-a91b-f9c82af384a0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-701526083049380262099226", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-701526083049380262099226", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5" ] + }, + "id" : "urn:uuid:26cb9ecf-f44a-409e-84f4-dca5f1c3846b" + } ] + }, { + "catenaXId" : "urn:uuid:73cd3a10-4017-4eee-a91b-f9c82af384a0", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:73cd3a10-4017-4eee-a91b-f9c82af384a0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-049829716077075794072420", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:73cd3a10-4017-4eee-a91b-f9c82af384a0", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-049829716077075794072420", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:73cd3a10-4017-4eee-a91b-f9c82af384a0" ] + }, + "id" : "urn:uuid:b530e0fb-15ac-4495-a927-b1a3a5fa59f1" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe", + "childItems" : [ { + "catenaXId" : "urn:uuid:829b9a9c-ef1c-4c3a-ba08-280610f50e9a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-455265312735585328225818", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-455265312735585328225818", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe" ] + }, + "id" : "urn:uuid:cb6327f9-5816-46b1-9870-9f5a71a1b8ab" + } ] + }, { + "catenaXId" : "urn:uuid:829b9a9c-ef1c-4c3a-ba08-280610f50e9a", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:829b9a9c-ef1c-4c3a-ba08-280610f50e9a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-471873550714452031349650", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:829b9a9c-ef1c-4c3a-ba08-280610f50e9a", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-471873550714452031349650", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:829b9a9c-ef1c-4c3a-ba08-280610f50e9a" ] + }, + "id" : "urn:uuid:c3190c62-aaba-4e34-8e98-6d621df0d14e" + } ] + }, { + "catenaXId" : "urn:uuid:c7e5b255-f19d-4a34-a632-a6c2a266c148", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c7e5b255-f19d-4a34-a632-a6c2a266c148" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-121251444324396901030766", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c7e5b255-f19d-4a34-a632-a6c2a266c148", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-121251444324396901030766", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c7e5b255-f19d-4a34-a632-a6c2a266c148" ] + }, + "id" : "urn:uuid:661d83b5-a0df-4c85-ad8d-333f15b44752" + } ] + }, { + "catenaXId" : "urn:uuid:741682ea-f384-4ad3-ab3e-0d6d9b1c03d2", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:741682ea-f384-4ad3-ab3e-0d6d9b1c03d2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-467348411303736522015393", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:741682ea-f384-4ad3-ab3e-0d6d9b1c03d2", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-467348411303736522015393", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:741682ea-f384-4ad3-ab3e-0d6d9b1c03d2" ] + }, + "id" : "urn:uuid:a6311658-99eb-43b0-aeec-98d28fcc4b8a" + } ] + }, { + "catenaXId" : "urn:uuid:2a117941-9566-407c-82d4-5c6d26c7a820", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2a117941-9566-407c-82d4-5c6d26c7a820" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-672997469788334701203206", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2a117941-9566-407c-82d4-5c6d26c7a820", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-672997469788334701203206", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2a117941-9566-407c-82d4-5c6d26c7a820" ] + }, + "id" : "urn:uuid:3b5d1870-a25f-4bb5-8c0b-f234646eddda" + } ] + }, { + "catenaXId" : "urn:uuid:5d4be00d-f4aa-4fde-ad20-79898702b19a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5d4be00d-f4aa-4fde-ad20-79898702b19a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-553506234185680929611129", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5d4be00d-f4aa-4fde-ad20-79898702b19a", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-553506234185680929611129", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5d4be00d-f4aa-4fde-ad20-79898702b19a" ] + }, + "id" : "urn:uuid:f0772214-394e-473d-a944-b11b73f97094" + } ] + }, { + "catenaXId" : "urn:uuid:a86753ef-d526-42e4-9c03-cbab94f10d73", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a86753ef-d526-42e4-9c03-cbab94f10d73" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-489701550532880428297009", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a86753ef-d526-42e4-9c03-cbab94f10d73", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-489701550532880428297009", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a86753ef-d526-42e4-9c03-cbab94f10d73" ] + }, + "id" : "urn:uuid:b054abf9-fc8a-455b-bbcb-47fdca26f5b8" + } ] + }, { + "catenaXId" : "urn:uuid:d11bea26-eefc-471b-a06e-c9669a153dd3", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d11bea26-eefc-471b-a06e-c9669a153dd3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-519284180535579352862826", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d11bea26-eefc-471b-a06e-c9669a153dd3", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-519284180535579352862826", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d11bea26-eefc-471b-a06e-c9669a153dd3" ] + }, + "id" : "urn:uuid:a8b13c4e-1b40-46dc-ad66-e5499c35b4b3" + } ] + }, { + "catenaXId" : "urn:uuid:402766de-9419-4c90-9106-af80d5a99b01", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:402766de-9419-4c90-9106-af80d5a99b01" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-782493002091513947640433", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:402766de-9419-4c90-9106-af80d5a99b01", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-782493002091513947640433", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:402766de-9419-4c90-9106-af80d5a99b01" ] + }, + "id" : "urn:uuid:157c7033-1d7d-43a1-b275-da2713b38633" + } ] + }, { + "catenaXId" : "urn:uuid:deed575e-59df-4d77-94b1-0c2e4a3bf15e", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:deed575e-59df-4d77-94b1-0c2e4a3bf15e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-947913585386770127728551", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:deed575e-59df-4d77-94b1-0c2e4a3bf15e", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-947913585386770127728551", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:deed575e-59df-4d77-94b1-0c2e4a3bf15e" ] + }, + "id" : "urn:uuid:d897e333-88dd-4316-8bd6-150fae58a91d" + } ] + }, { + "catenaXId" : "urn:uuid:a9830aae-8a30-452a-8b74-cb4bf64469b7", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a9830aae-8a30-452a-8b74-cb4bf64469b7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-488103802829290540707647", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a9830aae-8a30-452a-8b74-cb4bf64469b7", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-488103802829290540707647", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a9830aae-8a30-452a-8b74-cb4bf64469b7" ] + }, + "id" : "urn:uuid:6144ee2b-c48d-414d-933c-d645b8117312" + } ] + }, { + "catenaXId" : "urn:uuid:7eb9c492-8bc4-4429-b1f9-b8c8cf2a9f17", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7eb9c492-8bc4-4429-b1f9-b8c8cf2a9f17" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-502973282248809804756492", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7eb9c492-8bc4-4429-b1f9-b8c8cf2a9f17", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-502973282248809804756492", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7eb9c492-8bc4-4429-b1f9-b8c8cf2a9f17" ] + }, + "id" : "urn:uuid:868e177b-803f-4108-9db6-a0ae65429c73" + } ] + }, { + "catenaXId" : "urn:uuid:ecfc696b-1c8d-4b77-9955-023f139b8322", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ecfc696b-1c8d-4b77-9955-023f139b8322" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-185266057514956542305657", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ecfc696b-1c8d-4b77-9955-023f139b8322", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-185266057514956542305657", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ecfc696b-1c8d-4b77-9955-023f139b8322" ] + }, + "id" : "urn:uuid:18f18ba6-8c58-46c1-a0b8-989a81dd9811" + } ] + }, { + "catenaXId" : "urn:uuid:72f5c8f6-2687-4ba0-a9d3-20eab0c44946", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:72f5c8f6-2687-4ba0-a9d3-20eab0c44946" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-909179663383864540443582", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:72f5c8f6-2687-4ba0-a9d3-20eab0c44946", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-909179663383864540443582", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:72f5c8f6-2687-4ba0-a9d3-20eab0c44946" ] + }, + "id" : "urn:uuid:296eebac-a6ce-4d7d-becc-1a041502f498" + } ] + }, { + "catenaXId" : "urn:uuid:1bcd563f-cce1-4805-9b41-138f72c14a7d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1bcd563f-cce1-4805-9b41-138f72c14a7d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-387463817582010285149500", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1bcd563f-cce1-4805-9b41-138f72c14a7d", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-387463817582010285149500", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1bcd563f-cce1-4805-9b41-138f72c14a7d" ] + }, + "id" : "urn:uuid:7c4f7a76-b56f-463c-9c7a-ae2c12c571cb" + } ] + }, { + "catenaXId" : "urn:uuid:0b56ddd6-d64d-432b-bcdb-3ef349dd42be", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b56ddd6-d64d-432b-bcdb-3ef349dd42be" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-354794725442532808648367", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b56ddd6-d64d-432b-bcdb-3ef349dd42be", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-354794725442532808648367", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b56ddd6-d64d-432b-bcdb-3ef349dd42be" ] + }, + "id" : "urn:uuid:0579caf3-207b-47cb-9e99-1ac549e8b674" + } ] + }, { + "catenaXId" : "urn:uuid:e49a69f9-470a-4356-aab3-d7f7d52967a5", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e49a69f9-470a-4356-aab3-d7f7d52967a5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-972704652626595903491625", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e49a69f9-470a-4356-aab3-d7f7d52967a5", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-972704652626595903491625", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e49a69f9-470a-4356-aab3-d7f7d52967a5" ] + }, + "id" : "urn:uuid:4b7e806d-fc80-44ec-969e-b3428a98f03e" + } ] + }, { + "catenaXId" : "urn:uuid:28264837-efc0-4b4a-ab20-882910a2e174", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:28264837-efc0-4b4a-ab20-882910a2e174" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-550421180565278753489278", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:28264837-efc0-4b4a-ab20-882910a2e174", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-550421180565278753489278", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:28264837-efc0-4b4a-ab20-882910a2e174" ] + }, + "id" : "urn:uuid:dcc39286-4446-44fb-af61-e48b561dc1b7" + } ] + }, { + "catenaXId" : "urn:uuid:27068f44-96e6-4532-8945-816c22b106c9", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:27068f44-96e6-4532-8945-816c22b106c9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-447090898486118476153806", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:27068f44-96e6-4532-8945-816c22b106c9", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-447090898486118476153806", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:27068f44-96e6-4532-8945-816c22b106c9" ] + }, + "id" : "urn:uuid:04900f15-b4b1-42e3-bce9-92e159aa74b5" + } ] + }, { + "catenaXId" : "urn:uuid:db8946a7-ab3d-45ee-a345-c49726021a0c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:db8946a7-ab3d-45ee-a345-c49726021a0c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-854165849181212592209495", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:db8946a7-ab3d-45ee-a345-c49726021a0c", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-854165849181212592209495", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:db8946a7-ab3d-45ee-a345-c49726021a0c" ] + }, + "id" : "urn:uuid:8e668e2c-2e59-4db3-a4e3-3a7253a451c8" + } ] + }, { + "catenaXId" : "urn:uuid:af0050e5-7268-4ccf-9ae0-20468d372810", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:af0050e5-7268-4ccf-9ae0-20468d372810" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-565755871418749640501126", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:af0050e5-7268-4ccf-9ae0-20468d372810", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-565755871418749640501126", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:af0050e5-7268-4ccf-9ae0-20468d372810" ] + }, + "id" : "urn:uuid:f78594b6-78b9-4934-829b-bb452e35b7da" + } ] + }, { + "catenaXId" : "urn:uuid:378ac667-0b78-4584-8cc9-f86b0717a5db", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:378ac667-0b78-4584-8cc9-f86b0717a5db" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-395215180547896602884127", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:378ac667-0b78-4584-8cc9-f86b0717a5db", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-395215180547896602884127", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:378ac667-0b78-4584-8cc9-f86b0717a5db" ] + }, + "id" : "urn:uuid:6438ac2d-1ba5-4fed-84e4-3f34ffdefebc" + } ] + }, { + "catenaXId" : "urn:uuid:cfa90568-2e8d-4de7-9ed9-d73c4b0df0e4", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cfa90568-2e8d-4de7-9ed9-d73c4b0df0e4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-589530195892421956643882", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cfa90568-2e8d-4de7-9ed9-d73c4b0df0e4", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-589530195892421956643882", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:cfa90568-2e8d-4de7-9ed9-d73c4b0df0e4" ] + }, + "id" : "urn:uuid:c4514f27-8f92-4eb8-93a0-0f062695a410" + } ] + }, { + "catenaXId" : "urn:uuid:7e3ce380-be74-4159-912a-462a0eb425a1", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7e3ce380-be74-4159-912a-462a0eb425a1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-994714480188308639229515", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7e3ce380-be74-4159-912a-462a0eb425a1", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-994714480188308639229515", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:7e3ce380-be74-4159-912a-462a0eb425a1" ] + }, + "id" : "urn:uuid:1217e658-2c0b-4724-b862-01248c6bd617" + } ] + }, { + "catenaXId" : "urn:uuid:1f90d132-820c-4ceb-b36f-1a319f67a039", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1f90d132-820c-4ceb-b36f-1a319f67a039" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-120178743409700235441060", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1f90d132-820c-4ceb-b36f-1a319f67a039", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-120178743409700235441060", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1f90d132-820c-4ceb-b36f-1a319f67a039" ] + }, + "id" : "urn:uuid:3ebabe11-5f82-4388-b14e-27771b9457ca" + } ] + }, { + "catenaXId" : "urn:uuid:886e51c5-974b-4630-bcd1-c9f5827d3144", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:886e51c5-974b-4630-bcd1-c9f5827d3144" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-646613609556099620162628", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:886e51c5-974b-4630-bcd1-c9f5827d3144", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-646613609556099620162628", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:886e51c5-974b-4630-bcd1-c9f5827d3144" ] + }, + "id" : "urn:uuid:24c5e8d5-7cb0-4a1c-9ebf-2be4c143907f" + } ] + }, { + "catenaXId" : "urn:uuid:776b5497-1d21-4d91-ad4e-c781579eb3d0", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:776b5497-1d21-4d91-ad4e-c781579eb3d0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-093620758650075129100866", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:776b5497-1d21-4d91-ad4e-c781579eb3d0", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-093620758650075129100866", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:776b5497-1d21-4d91-ad4e-c781579eb3d0" ] + }, + "id" : "urn:uuid:a4a4738c-9f6f-497d-bb99-9cf2dba8d7e3" + } ] + }, { + "catenaXId" : "urn:uuid:0096184b-a46a-42cf-9a8a-bef41ff6704e", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0096184b-a46a-42cf-9a8a-bef41ff6704e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-074484515654136323441862", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0096184b-a46a-42cf-9a8a-bef41ff6704e", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-074484515654136323441862", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0096184b-a46a-42cf-9a8a-bef41ff6704e" ] + }, + "id" : "urn:uuid:eb8be90b-81a4-4f21-beda-53c6cd64fcf4" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", + "childItems" : [ { + "catenaXId" : "urn:uuid:cd27fb0b-8264-4182-9ff9-e45897760b24", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9e25cc3b-4fad-459f-83c4-f08f91657811", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-204030456164807325656878", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-204030456164807325656878", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-204030456164807325656878", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2" ] + }, + "id" : "urn:uuid:aacb4de4-51f2-4f3e-be2d-3adcb042e7dc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 85, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 66, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 42, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:cd27fb0b-8264-4182-9ff9-e45897760b24", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cd27fb0b-8264-4182-9ff9-e45897760b24" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "45662S5-39", + "key" : "manufacturerPartId" + }, { + "value" : "NO-018518580174052308110360", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd27fb0b-8264-4182-9ff9-e45897760b24", + "partTypeInformation" : { + "manufacturerPartId" : "45662S5-39", + "customerPartId" : "45662S5-39", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 73, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 60, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140", + "childItems" : [ { + "catenaXId" : "urn:uuid:f37662f0-9229-4932-9e90-a98167fcf63e", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "48939G1-07", + "key" : "manufacturerPartId" + }, { + "value" : "NO-328820646736194010165519", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140", + "partTypeInformation" : { + "manufacturerPartId" : "48939G1-07", + "customerPartId" : "48939G1-07", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-328820646736194010165519", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "48939G1-07", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140" ] + }, + "id" : "urn:uuid:19053c16-3253-410c-afd0-86c544abc90d" + } ] + }, { + "catenaXId" : "urn:uuid:f37662f0-9229-4932-9e90-a98167fcf63e", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f37662f0-9229-4932-9e90-a98167fcf63e" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "99902B1-36", + "key" : "manufacturerPartId" + }, { + "value" : "NO-652560799378390627559318", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f37662f0-9229-4932-9e90-a98167fcf63e", + "partTypeInformation" : { + "manufacturerPartId" : "99902B1-36", + "customerPartId" : "99902B1-36", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 25, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 70, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9e25cc3b-4fad-459f-83c4-f08f91657811", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:9e25cc3b-4fad-459f-83c4-f08f91657811", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9e25cc3b-4fad-459f-83c4-f08f91657811" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "05495M0-12", + "key" : "manufacturerPartId" + }, { + "value" : "NO-878830295019841421493384", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e25cc3b-4fad-459f-83c4-f08f91657811", + "partTypeInformation" : { + "manufacturerPartId" : "05495M0-12", + "customerPartId" : "05495M0-12", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036", + "childItems" : [ { + "catenaXId" : "urn:uuid:92d438a7-0ee7-4e39-a878-6cafb9f2f050", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d2f7cd1d-19e7-4d8a-82c4-352952cb0b2b", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "61670Z0-36", + "key" : "manufacturerPartId" + }, { + "value" : "NO-055526058018884471359570", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036", + "partTypeInformation" : { + "manufacturerPartId" : "61670Z0-36", + "customerPartId" : "61670Z0-36", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-055526058018884471359570", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61670Z0-36", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036" ] + }, + "id" : "urn:uuid:1709820c-aabe-4d2f-9672-4796f72355ab" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 69, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:92d438a7-0ee7-4e39-a878-6cafb9f2f050", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:92d438a7-0ee7-4e39-a878-6cafb9f2f050" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "18109Z5-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-943366440031858485779304", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:92d438a7-0ee7-4e39-a878-6cafb9f2f050", + "partTypeInformation" : { + "manufacturerPartId" : "18109Z5-44", + "customerPartId" : "18109Z5-44", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 26, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 43, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1", + "childItems" : [ { + "catenaXId" : "urn:uuid:51a3ac5b-1ac1-46cb-a969-7bae3dbebe40", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "98263V4-71", + "key" : "manufacturerPartId" + }, { + "value" : "NO-623753981935904869980754", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1", + "partTypeInformation" : { + "manufacturerPartId" : "98263V4-71", + "customerPartId" : "98263V4-71", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-623753981935904869980754", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "98263V4-71", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1" ] + }, + "id" : "urn:uuid:5b4c7a09-6432-4fbb-aba1-7a49bd57b279" + } ] + }, { + "catenaXId" : "urn:uuid:51a3ac5b-1ac1-46cb-a969-7bae3dbebe40", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:51a3ac5b-1ac1-46cb-a969-7bae3dbebe40" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "35022R1-45", + "key" : "manufacturerPartId" + }, { + "value" : "NO-735129134475024836024768", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:51a3ac5b-1ac1-46cb-a969-7bae3dbebe40", + "partTypeInformation" : { + "manufacturerPartId" : "35022R1-45", + "customerPartId" : "35022R1-45", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 46, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 16, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d2f7cd1d-19e7-4d8a-82c4-352952cb0b2b", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d2f7cd1d-19e7-4d8a-82c4-352952cb0b2b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "37009N2-81", + "key" : "manufacturerPartId" + }, { + "value" : "NO-196275387672097765327129", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d2f7cd1d-19e7-4d8a-82c4-352952cb0b2b", + "partTypeInformation" : { + "manufacturerPartId" : "37009N2-81", + "customerPartId" : "37009N2-81", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-196275387672097765327129", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "37009N2-81", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d2f7cd1d-19e7-4d8a-82c4-352952cb0b2b" ] + }, + "id" : "urn:uuid:02880f62-691d-484d-b7e5-b2c7ef385207" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 49, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 71, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "childItems" : [ { + "catenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-696141947206722198368002", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-696141947206722198368002", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d" ] + }, + "id" : "urn:uuid:056d204b-3b16-4c7b-8402-3acf9c0dd9b5" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 75, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 54, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 8, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-571854318835431720774509", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-571854318835431720774509", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, + "id" : "urn:uuid:791c2b2f-b92a-4f52-aadf-a542162ee7c9" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 80, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 55, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 62, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-591490338939042705211295", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-591490338939042705211295", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0" ] + }, + "id" : "urn:uuid:dc221533-4289-4ece-9746-c57ffff248c5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-15T17:58:35.517Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T09:44:31.517Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-697006543823294372704203", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-697006543823294372704203", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc" ] + }, + "id" : "urn:uuid:4fc1e47b-1a35-4c9b-83b9-ffe5e79b94d3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-05T12:09:10.529Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T22:28:46.529Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-570228160675492523203259", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-570228160675492523203259", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f" ] + }, + "id" : "urn:uuid:d8f82622-bda1-4413-ad1f-58b5a1cd6de4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-24T21:37:57.541Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T09:23:47.541Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-493925801727090508120996", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-493925801727090508120996", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c" ] + }, + "id" : "urn:uuid:24eeba3c-7342-4756-a695-3d12733495e9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-05-12T22:51:09.559Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T22:13:43.559Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-895135705337565891431869", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-895135705337565891431869", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b" ] + }, + "id" : "urn:uuid:74ba9b71-6e9e-4f51-a53e-407d5abb97c7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-02-11T09:19:09.571Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T16:22:04.571Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-650439714686751631705246", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-650439714686751631705246", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94" ] + }, + "id" : "urn:uuid:cadb7f50-ee24-43bf-942f-3ab014ac47cb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-11T13:50:39.582Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T21:50:00.582Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-457140259748837411199744", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-457140259748837411199744", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c" ] + }, + "id" : "urn:uuid:28e17973-ef42-4a9c-8c92-9e5e0ea9618e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-06-24T10:00:47.592Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T09:30:46.592Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-492418264899874843890535", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-492418264899874843890535", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad" ] + }, + "id" : "urn:uuid:142a0cf9-abb2-46de-9769-2bc4b03089eb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-20T23:45:58.602Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T01:37:10.602Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-063708996219095307436250", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-063708996219095307436250", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9" ] + }, + "id" : "urn:uuid:e2f48912-35da-4372-adde-cfa0e32ca548" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-14T12:00:25.613Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T07:08:14.613Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-557584373410544719342610", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-557584373410544719342610", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553" ] + }, + "id" : "urn:uuid:e6fa56ed-dfa0-4e9e-8299-825c5d249159" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-10-28T08:29:55.623Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T03:17:14.623Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:607ad661-65fd-4535-b100-62119f605a17", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-305075740487820380708261", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-305075740487820380708261", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, + "id" : "urn:uuid:fa8e7176-8368-4752-b926-a217e9f1a1fc" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 81, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 40, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 21, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-378553551269040864574849", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-378553551269040864574849", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c" ] + }, + "id" : "urn:uuid:861723ec-7845-4f95-a1b4-d8b53487809f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-05-03T05:44:59.643Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T08:52:49.643Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-355628109948116396650902", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-355628109948116396650902", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de" ] + }, + "id" : "urn:uuid:79e933d3-11cd-41d0-bea3-b8fd3d6c2f69" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-05T02:43:56.652Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T13:08:41.652Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-506860686772433355045141", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-506860686772433355045141", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172" ] + }, + "id" : "urn:uuid:1be82c00-c811-4a53-b104-b4c0debeadae" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-28T22:28:13.662Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T12:40:27.662Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-308524881363037976144600", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-308524881363037976144600", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4" ] + }, + "id" : "urn:uuid:f1824689-0855-4557-bfde-df766e70daa7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-17T19:55:03.672Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T10:32:49.672Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-382495084414338421048740", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-382495084414338421048740", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47" ] + }, + "id" : "urn:uuid:839d0f2b-e4a9-491b-96a2-619f832e1961" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-05-12T21:59:08.682Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T02:01:32.682Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-691741514585476903857710", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-691741514585476903857710", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c" ] + }, + "id" : "urn:uuid:9e9a3407-b745-4f56-a1fc-942c4cc0a8a7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-27T01:55:48.692Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T11:34:31.692Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-354816265837227854884078", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-354816265837227854884078", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e" ] + }, + "id" : "urn:uuid:308404e8-7973-43a6-b10c-7003893f4371" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-06-20T03:04:19.701Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T00:18:14.701Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:607ad661-65fd-4535-b100-62119f605a17", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:607ad661-65fd-4535-b100-62119f605a17", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:607ad661-65fd-4535-b100-62119f605a17" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-656049314560667094515869", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:607ad661-65fd-4535-b100-62119f605a17", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-656049314560667094515869", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:607ad661-65fd-4535-b100-62119f605a17" ] + }, + "id" : "urn:uuid:4971a7f7-952f-4768-9755-af3df0f6b673" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-19T10:22:46.711Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T19:36:37.711Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-976905327653067141972872", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-976905327653067141972872", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b" ] + }, + "id" : "urn:uuid:b52b2276-feff-4fad-b435-0412ae09b881" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-15T12:49:52.721Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T06:30:28.721Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-566040124017742256995932", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-566040124017742256995932", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a" ] + }, + "id" : "urn:uuid:ac938766-c3cf-43ac-85ed-db724b8a56bd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-28T22:57:29.736Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T13:11:43.736Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4d917918-5d80-4152-822f-95180227262e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-717410363337768377183042", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-717410363337768377183042", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, + "id" : "urn:uuid:e7dbbadd-d5bd-4bdd-958d-c8d7c11ef825" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 1, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 79, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 54, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-177106700583025305262550", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-177106700583025305262550", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca" ] + }, + "id" : "urn:uuid:77f93513-12da-4134-a80a-38391ec7058d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-14T22:46:57.758Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T09:42:39.759Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4d917918-5d80-4152-822f-95180227262e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4d917918-5d80-4152-822f-95180227262e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4d917918-5d80-4152-822f-95180227262e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-354344229744882491939754", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4d917918-5d80-4152-822f-95180227262e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-354344229744882491939754", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4d917918-5d80-4152-822f-95180227262e" ] + }, + "id" : "urn:uuid:70af2242-a69f-4204-b1fa-82de0e38c7eb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-27T14:54:56.769Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T13:32:15.769Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-636962639332408652131206", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-636962639332408652131206", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761" ] + }, + "id" : "urn:uuid:6173081d-0c7d-4fb2-a5ff-dbbaca811744" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-30T09:20:29.780Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T04:10:41.780Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-745763990399725104937366", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-745763990399725104937366", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210" ] + }, + "id" : "urn:uuid:7c554392-4d05-4900-b94a-90a8fcd6ec8a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-12T20:04:51.791Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T10:37:53.791Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-042454665115049157909247", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-042454665115049157909247", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57" ] + }, + "id" : "urn:uuid:f2cbab11-b46f-4529-b433-9221517c008f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-02T06:47:00.801Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T08:48:02.801Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-774551413087966950287183", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-774551413087966950287183", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2" ] + }, + "id" : "urn:uuid:73978030-6a7e-45c1-ac8c-1f0d54560b29" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-23T06:11:12.812Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T16:00:45.812Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-957662513139666462847903", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-957662513139666462847903", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa" ] + }, + "id" : "urn:uuid:fa5090ca-8f4e-4d3f-80cf-e2dae05da04c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-01T16:39:56.822Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T06:06:26.822Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-937108060574724968352581", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-937108060574724968352581", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce" ] + }, + "id" : "urn:uuid:8781b73c-f98a-45e8-84ad-99fc1e8b2cc0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-12T12:45:53.832Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T11:44:21.832Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-427388871270529891308928", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-427388871270529891308928", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369" ] + }, + "id" : "urn:uuid:0822925a-3bfa-4dae-ae98-1ae5146a093c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-01-11T09:07:27.841Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T15:38:04.841Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-670008350112815161438898", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-670008350112815161438898", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d" ] + }, + "id" : "urn:uuid:6e23c434-f8f6-4259-9f5b-700d337a7e13" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-11-07T08:11:32.851Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T02:51:57.851Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:427725ea-b017-447e-9120-159db70c5cde", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a613e4de-007a-438e-9014-539df063c200", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-437720263519198304788754", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-437720263519198304788754", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, + "id" : "urn:uuid:50d0feef-e637-4aca-998f-4494d1e0f35b" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 78, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 34, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 48, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:427725ea-b017-447e-9120-159db70c5cde", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:427725ea-b017-447e-9120-159db70c5cde", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:427725ea-b017-447e-9120-159db70c5cde" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-851182728652134890924461", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:427725ea-b017-447e-9120-159db70c5cde", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-851182728652134890924461", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:427725ea-b017-447e-9120-159db70c5cde" ] + }, + "id" : "urn:uuid:4c43c703-0fb9-4cc4-8e89-b2a2827e4fed" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-02-15T17:45:43.870Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T20:48:03.870Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-704291925307733976419462", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-704291925307733976419462", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e" ] + }, + "id" : "urn:uuid:87be84da-2749-4e59-9912-b16badeb5e1f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-06T07:51:33.878Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T12:13:43.878Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-087114718731389732949224", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-087114718731389732949224", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912" ] + }, + "id" : "urn:uuid:7dea973f-b5eb-4743-90c9-b9b47e0d3c28" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-05-13T16:02:04.887Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T10:47:26.887Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-238691540572722929820257", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-238691540572722929820257", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af" ] + }, + "id" : "urn:uuid:fb9a83ec-65de-42a2-a857-367db1e86612" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-01-26T18:51:02.896Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T03:31:41.896Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-245868202908962085334181", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-245868202908962085334181", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46" ] + }, + "id" : "urn:uuid:c3cf17b0-e6ef-44e8-8200-20600de6d22e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-02-25T10:00:57.907Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T04:28:33.907Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-112510331349622771455264", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-112510331349622771455264", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a" ] + }, + "id" : "urn:uuid:6c5a458c-75b6-4505-b0b5-d09dc3a9f063" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-06T19:06:11.915Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T21:23:49.915Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-914220622330332754154075", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-914220622330332754154075", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e" ] + }, + "id" : "urn:uuid:0947324b-e696-48a1-a581-6912aedad722" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-10T17:55:48.924Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T00:48:05.924Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a613e4de-007a-438e-9014-539df063c200", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a613e4de-007a-438e-9014-539df063c200", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a613e4de-007a-438e-9014-539df063c200" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-241806304073167762816391", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a613e4de-007a-438e-9014-539df063c200", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-241806304073167762816391", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a613e4de-007a-438e-9014-539df063c200" ] + }, + "id" : "urn:uuid:36e7e35c-9d3f-43b8-a405-95596cebe93a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-31T06:15:59.932Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T18:06:34.932Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-977780580061285139092206", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-977780580061285139092206", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c" ] + }, + "id" : "urn:uuid:bc9e4d31-5490-47e1-8692-7de28c3aa929" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-27T06:15:34.941Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T18:08:48.941Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-233399903113107493332716", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-233399903113107493332716", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb" ] + }, + "id" : "urn:uuid:15f65ec8-2fa0-4d5e-be5b-d7ce003fd23a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-02T12:39:31.951Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T20:24:23.951Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-595476642552474542265554", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-595476642552474542265554", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, + "id" : "urn:uuid:144519a2-c4d1-4e97-9e10-3ade5d759f14" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 25, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 43, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 46, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-554088403379333006631985", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-554088403379333006631985", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858" ] + }, + "id" : "urn:uuid:a014f9ca-2e5f-4e7d-94f7-054d0c8700fe" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-01T04:44:41.969Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T23:18:46.969Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-869145946690201707832670", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-869145946690201707832670", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852" ] + }, + "id" : "urn:uuid:525769f1-880c-4144-b8fd-8356a1e475f6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-05-28T05:38:22.978Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T12:12:42.979Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-811601999345448194926617", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-811601999345448194926617", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55" ] + }, + "id" : "urn:uuid:730d66cf-f428-4767-81d6-c90851e9853c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-22T19:35:20.987Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T02:08:16.987Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-017285568031854588534964", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-017285568031854588534964", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1" ] + }, + "id" : "urn:uuid:b86dfd0a-af86-4f55-a1d4-9ff484dd9840" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-13T15:57:12.995Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T22:50:35.995Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-525636621767784102950678", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-525636621767784102950678", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335" ] + }, + "id" : "urn:uuid:b51da281-d24d-454e-9845-770521006949" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-05-21T05:41:43.005Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T15:59:09.005Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-392856066690148572366422", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-392856066690148572366422", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4" ] + }, + "id" : "urn:uuid:1b26c43c-b706-413a-b238-610730b15d87" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-02T14:44:48.014Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T18:34:07.014Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-608761940832325039022972", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-608761940832325039022972", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05" ] + }, + "id" : "urn:uuid:0d579313-f188-478e-b3c8-e9e2a82952df" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-01-06T02:36:50.023Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T04:24:02.023Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-133064425822900937845348", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-133064425822900937845348", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a" ] + }, + "id" : "urn:uuid:bf927e7b-3db9-4f93-a364-010165e31349" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-15T23:39:13.032Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T06:18:50.032Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-523766563862709942344104", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-523766563862709942344104", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4" ] + }, + "id" : "urn:uuid:40f597b1-bc3c-40ae-82cb-51ff25f70bac" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-23T00:21:35.040Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T14:06:25.040Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-488715430315398518751239", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-488715430315398518751239", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34" ] + }, + "id" : "urn:uuid:e135fc22-a368-4f5d-9289-3b1215f6cf2f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-26T17:32:52.049Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T10:02:20.049Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-473729692945239577584494", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-473729692945239577584494", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, + "id" : "urn:uuid:e6a999df-bc81-4674-aacb-1a518478b1c3" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 19, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 53, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 42, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-467452781724768142111413", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-467452781724768142111413", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f" ] + }, + "id" : "urn:uuid:ddb13eb5-bfb7-4d85-9004-eb184dd83fd5" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-01T10:24:44.067Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T21:48:45.067Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-362653488304738077083166", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-362653488304738077083166", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435" ] + }, + "id" : "urn:uuid:ff8f2983-a970-4c7e-8b21-de3acde019b6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-18T10:45:18.076Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T17:39:55.076Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-328389993558245207223908", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-328389993558245207223908", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32" ] + }, + "id" : "urn:uuid:11a83e2e-41c1-4444-9740-140b58f57c9e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-03-22T21:52:05.085Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T21:21:20.085Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-680072427662568025070615", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-680072427662568025070615", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c" ] + }, + "id" : "urn:uuid:db308172-6bee-4431-b34c-ff5bd4596c66" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-12-30T06:01:27.094Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T17:24:38.094Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-119212400353507800148793", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-119212400353507800148793", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9" ] + }, + "id" : "urn:uuid:46bc7ba5-a162-4177-9580-e896ca50b5b1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-23T13:02:24.103Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T07:59:07.103Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-114220578902963772022995", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-114220578902963772022995", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71" ] + }, + "id" : "urn:uuid:203e35eb-2246-4763-b2b1-a27a933bb853" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-06T20:53:20.112Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T15:50:15.112Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-044413530794179469966088", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-044413530794179469966088", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557" ] + }, + "id" : "urn:uuid:6d0150e3-c5f0-4851-b2e9-8e2fc3a6b01c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-22T07:58:35.121Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T14:43:48.121Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-623372533895102919358694", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-623372533895102919358694", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988" ] + }, + "id" : "urn:uuid:d6d09f8b-ac60-46d0-9d8d-08a27088c89e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-16T10:41:17.130Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T21:16:34.130Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-942692275430933218664854", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-942692275430933218664854", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2" ] + }, + "id" : "urn:uuid:d6940580-e186-4b73-9bfe-525d9f818e49" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-27T04:08:45.138Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T06:31:37.138Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-803207635471424348738819", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-803207635471424348738819", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c" ] + }, + "id" : "urn:uuid:941865d4-f7f6-4b65-bb82-be017ee54f41" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-17T02:59:51.147Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T04:09:17.147Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "engine" : { + "size" : 2998, + "power" : 152 + }, + "emptyWeight" : 1.79, + "fuel" : "hybrid petrol/electric", + "vehicleModel" : "Vehicle Hybrid", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + }, { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "childItems" : [ { + "catenaXId" : "urn:uuid:b7e98b7c-e28b-4b55-9b1b-dde2c82d8284", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:286d3893-cc8a-4a20-a9a7-d6cd2e7d060c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bf82fc98-ed33-4cf0-aa4c-f908582b8c9f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3b9e91f5-a7c2-4878-bf05-1ca82b9ac925", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:961122be-b51f-48c6-bf33-739105a25092", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a1bed12c-24aa-405d-b513-e27d7b823329", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:659d4f63-4f3a-42d6-a529-99b5d29c19b6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2e0b9d50-38e6-4776-b31f-1890a3c5d79a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c92321f3-b53f-4935-978b-e33bee6dc612", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ae9beb58-afb3-49f3-897b-17dff3784741", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ea075d7a-e871-48c9-a448-1d4884b0e231", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:561b0741-6b41-42d3-95ee-b2f0d0563a26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:46e3bc1b-e158-4098-9eb7-c891f73352db", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0dc30548-c507-4bd1-81cb-006d521b92f4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:20c5ccff-5f1c-4cdb-8727-16efd47c1414", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:21d496fa-addc-4c70-87bc-54f1018815ea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:23e30efe-e925-4132-bb7c-f89a9b5e46d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0f94a5ec-b0af-4be1-a9d7-035f285cbf98", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1162726d-3aa8-4973-856a-d880e8032f82", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:32b09ff1-37c4-4d03-a5f0-25fe0dabbfe7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:81b1870e-7b2f-45dc-9e13-5bb57ce3fb25", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c1156524-1313-456e-b147-4f495f158583", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d663b5e8-0594-4b2e-85df-6016be37f216", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04479d1c-1d77-4b82-a85f-514f20ff3672", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8dc5f023-fe95-40c9-808b-bd98d86c43ea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bf3b94a0-1d08-476e-b22f-ca0bc712d211", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d537fe2e-5b76-4f15-bb13-bc5f3be9aee3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:11cdab08-699b-4646-ab47-475addeabd96", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:17c56482-4f8c-4afb-a56e-58f3b11cf38e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9355267e-cf1f-4074-be48-3abd518df5e7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:075ae995-6bff-41fa-afee-68bc2be0f494", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "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" + } ], + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "CZ-95", + "key" : "manufacturerPartId" + }, { + "value" : "OMBYLOUUAFPAXZYBG", + "key" : "partInstanceId" + }, { + "value" : "OMBYLOUUAFPAXZYBG", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2014-11-28T03:48:30.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "partTypeInformation" : { + "manufacturerPartId" : "CZ-95", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Hybrid" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMBYLOUUAFPAXZYBG", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "CZ-95", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_hybrid.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Hybrid" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, + "id" : "urn:uuid:11d7cb53-9a83-420f-bc69-3d3c71e36514" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 10, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 19, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 20, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 32, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 45, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 35, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 25, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 39, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 10, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b7e98b7c-e28b-4b55-9b1b-dde2c82d8284", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b7e98b7c-e28b-4b55-9b1b-dde2c82d8284" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-227271972294678914653092", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b7e98b7c-e28b-4b55-9b1b-dde2c82d8284", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-227271972294678914653092", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b7e98b7c-e28b-4b55-9b1b-dde2c82d8284" ] + }, + "id" : "urn:uuid:66399e1e-bd62-4050-b24f-18b36c6e66c7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:286d3893-cc8a-4a20-a9a7-d6cd2e7d060c", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:286d3893-cc8a-4a20-a9a7-d6cd2e7d060c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-196743101731158294583096", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:286d3893-cc8a-4a20-a9a7-d6cd2e7d060c", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-196743101731158294583096", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:286d3893-cc8a-4a20-a9a7-d6cd2e7d060c" ] + }, + "id" : "urn:uuid:ace8f0e4-1ba8-4897-813e-91594ff84515" + } ] + }, { + "catenaXId" : "urn:uuid:bf82fc98-ed33-4cf0-aa4c-f908582b8c9f", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bf82fc98-ed33-4cf0-aa4c-f908582b8c9f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-776778235523310027888606", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bf82fc98-ed33-4cf0-aa4c-f908582b8c9f", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-776778235523310027888606", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bf82fc98-ed33-4cf0-aa4c-f908582b8c9f" ] + }, + "id" : "urn:uuid:565e9d61-cb0e-43ae-bf60-89476d3cb2eb" + } ] + }, { + "catenaXId" : "urn:uuid:3b9e91f5-a7c2-4878-bf05-1ca82b9ac925", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3b9e91f5-a7c2-4878-bf05-1ca82b9ac925" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-603196420275189428398812", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3b9e91f5-a7c2-4878-bf05-1ca82b9ac925", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-603196420275189428398812", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:3b9e91f5-a7c2-4878-bf05-1ca82b9ac925" ] + }, + "id" : "urn:uuid:b57598e9-f33f-44a3-be06-273b97e85a11" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69", + "childItems" : [ { + "catenaXId" : "urn:uuid:d073c75d-d248-47d1-be2c-53809defb10e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-292497149978968806008123", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-292497149978968806008123", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69" ] + }, + "id" : "urn:uuid:7653bd95-cfa2-4745-be1d-79904a659fe0" + } ] + }, { + "catenaXId" : "urn:uuid:d073c75d-d248-47d1-be2c-53809defb10e", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d073c75d-d248-47d1-be2c-53809defb10e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-631442697853008823769312", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d073c75d-d248-47d1-be2c-53809defb10e", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-631442697853008823769312", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d073c75d-d248-47d1-be2c-53809defb10e" ] + }, + "id" : "urn:uuid:cd8d5dfe-b3ff-4976-ae7c-6723a06ba76a" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:961122be-b51f-48c6-bf33-739105a25092", + "childItems" : [ { + "catenaXId" : "urn:uuid:e8db82eb-f2bb-4949-b038-558fa3c9c2eb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:961122be-b51f-48c6-bf33-739105a25092", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:961122be-b51f-48c6-bf33-739105a25092" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-845393784591331385328300", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:961122be-b51f-48c6-bf33-739105a25092", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-845393784591331385328300", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:961122be-b51f-48c6-bf33-739105a25092" ] + }, + "id" : "urn:uuid:f15568ce-9b01-4482-aca7-6d7da6c6bc17" + } ] + }, { + "catenaXId" : "urn:uuid:e8db82eb-f2bb-4949-b038-558fa3c9c2eb", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:961122be-b51f-48c6-bf33-739105a25092", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e8db82eb-f2bb-4949-b038-558fa3c9c2eb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-963501982318709698711674", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e8db82eb-f2bb-4949-b038-558fa3c9c2eb", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-963501982318709698711674", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e8db82eb-f2bb-4949-b038-558fa3c9c2eb" ] + }, + "id" : "urn:uuid:cc0ba3fd-46ea-429a-b09f-4acf1dfc9103" + } ] + }, { + "catenaXId" : "urn:uuid:a1bed12c-24aa-405d-b513-e27d7b823329", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a1bed12c-24aa-405d-b513-e27d7b823329" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-729654972456499514603085", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a1bed12c-24aa-405d-b513-e27d7b823329", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-729654972456499514603085", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a1bed12c-24aa-405d-b513-e27d7b823329" ] + }, + "id" : "urn:uuid:6dfda892-23ae-4059-baa3-0ac2e41849b6" + } ] + }, { + "catenaXId" : "urn:uuid:659d4f63-4f3a-42d6-a529-99b5d29c19b6", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:659d4f63-4f3a-42d6-a529-99b5d29c19b6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-373583799625229128244087", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:659d4f63-4f3a-42d6-a529-99b5d29c19b6", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-373583799625229128244087", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:659d4f63-4f3a-42d6-a529-99b5d29c19b6" ] + }, + "id" : "urn:uuid:447524a7-b789-4867-9c9f-3d18d40cc48b" + } ] + }, { + "catenaXId" : "urn:uuid:2e0b9d50-38e6-4776-b31f-1890a3c5d79a", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2e0b9d50-38e6-4776-b31f-1890a3c5d79a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-074800859195809874149585", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2e0b9d50-38e6-4776-b31f-1890a3c5d79a", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-074800859195809874149585", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:2e0b9d50-38e6-4776-b31f-1890a3c5d79a" ] + }, + "id" : "urn:uuid:8ad0db30-2248-4c16-8bd0-dbdc50887e51" + } ] + }, { + "catenaXId" : "urn:uuid:c92321f3-b53f-4935-978b-e33bee6dc612", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c92321f3-b53f-4935-978b-e33bee6dc612" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-145408807956964073122110", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c92321f3-b53f-4935-978b-e33bee6dc612", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-145408807956964073122110", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c92321f3-b53f-4935-978b-e33bee6dc612" ] + }, + "id" : "urn:uuid:e3c9b762-7815-4c8c-ac8c-09e31a9994e2" + } ] + }, { + "catenaXId" : "urn:uuid:ae9beb58-afb3-49f3-897b-17dff3784741", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ae9beb58-afb3-49f3-897b-17dff3784741" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-968092372582955140631865", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ae9beb58-afb3-49f3-897b-17dff3784741", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-968092372582955140631865", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ae9beb58-afb3-49f3-897b-17dff3784741" ] + }, + "id" : "urn:uuid:24cb9657-f84b-42f9-963e-44cebbd90bd2" + } ] + }, { + "catenaXId" : "urn:uuid:ea075d7a-e871-48c9-a448-1d4884b0e231", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ea075d7a-e871-48c9-a448-1d4884b0e231" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-565980997155179985139904", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ea075d7a-e871-48c9-a448-1d4884b0e231", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-565980997155179985139904", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ea075d7a-e871-48c9-a448-1d4884b0e231" ] + }, + "id" : "urn:uuid:65e78c26-0400-4e52-96b9-b7057100dd6c" + } ] + }, { + "catenaXId" : "urn:uuid:561b0741-6b41-42d3-95ee-b2f0d0563a26", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:561b0741-6b41-42d3-95ee-b2f0d0563a26" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-144278410604610131748087", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:561b0741-6b41-42d3-95ee-b2f0d0563a26", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-144278410604610131748087", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:561b0741-6b41-42d3-95ee-b2f0d0563a26" ] + }, + "id" : "urn:uuid:1f657ac9-bea0-4213-b5e3-4ff9014e349e" + } ] + }, { + "catenaXId" : "urn:uuid:46e3bc1b-e158-4098-9eb7-c891f73352db", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:46e3bc1b-e158-4098-9eb7-c891f73352db" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-102494696168162400317214", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:46e3bc1b-e158-4098-9eb7-c891f73352db", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-102494696168162400317214", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:46e3bc1b-e158-4098-9eb7-c891f73352db" ] + }, + "id" : "urn:uuid:8a2e2c31-7354-45bb-9de2-c6edce6e2c49" + } ] + }, { + "catenaXId" : "urn:uuid:0dc30548-c507-4bd1-81cb-006d521b92f4", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0dc30548-c507-4bd1-81cb-006d521b92f4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-378420253337657877994347", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0dc30548-c507-4bd1-81cb-006d521b92f4", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-378420253337657877994347", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0dc30548-c507-4bd1-81cb-006d521b92f4" ] + }, + "id" : "urn:uuid:10455db8-66f4-49c4-8cef-8a7a8cc4a16d" + } ] + }, { + "catenaXId" : "urn:uuid:20c5ccff-5f1c-4cdb-8727-16efd47c1414", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:20c5ccff-5f1c-4cdb-8727-16efd47c1414" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-692560803336774228209812", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:20c5ccff-5f1c-4cdb-8727-16efd47c1414", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-692560803336774228209812", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:20c5ccff-5f1c-4cdb-8727-16efd47c1414" ] + }, + "id" : "urn:uuid:6d5c7c23-dff4-4745-9f7f-ea7df3046fc6" + } ] + }, { + "catenaXId" : "urn:uuid:21d496fa-addc-4c70-87bc-54f1018815ea", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:21d496fa-addc-4c70-87bc-54f1018815ea" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-411721090034293871168535", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:21d496fa-addc-4c70-87bc-54f1018815ea", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-411721090034293871168535", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:21d496fa-addc-4c70-87bc-54f1018815ea" ] + }, + "id" : "urn:uuid:cf20a051-9665-4670-8c56-4a3da4045ad7" + } ] + }, { + "catenaXId" : "urn:uuid:23e30efe-e925-4132-bb7c-f89a9b5e46d7", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:23e30efe-e925-4132-bb7c-f89a9b5e46d7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-484433765755647182685532", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:23e30efe-e925-4132-bb7c-f89a9b5e46d7", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-484433765755647182685532", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:23e30efe-e925-4132-bb7c-f89a9b5e46d7" ] + }, + "id" : "urn:uuid:12d1b16e-5c74-4573-be2d-b012c38de01b" + } ] + }, { + "catenaXId" : "urn:uuid:0f94a5ec-b0af-4be1-a9d7-035f285cbf98", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0f94a5ec-b0af-4be1-a9d7-035f285cbf98" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-828204547529781146754850", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0f94a5ec-b0af-4be1-a9d7-035f285cbf98", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-828204547529781146754850", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:0f94a5ec-b0af-4be1-a9d7-035f285cbf98" ] + }, + "id" : "urn:uuid:99261d00-488e-45ec-8a2f-fc53bba893c1" + } ] + }, { + "catenaXId" : "urn:uuid:1162726d-3aa8-4973-856a-d880e8032f82", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1162726d-3aa8-4973-856a-d880e8032f82" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-439525571836968914814439", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1162726d-3aa8-4973-856a-d880e8032f82", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-439525571836968914814439", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1162726d-3aa8-4973-856a-d880e8032f82" ] + }, + "id" : "urn:uuid:19f1b789-1008-45bf-8699-dc834e148637" + } ] + }, { + "catenaXId" : "urn:uuid:32b09ff1-37c4-4d03-a5f0-25fe0dabbfe7", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:32b09ff1-37c4-4d03-a5f0-25fe0dabbfe7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-494555252629299906819342", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:32b09ff1-37c4-4d03-a5f0-25fe0dabbfe7", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-494555252629299906819342", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:32b09ff1-37c4-4d03-a5f0-25fe0dabbfe7" ] + }, + "id" : "urn:uuid:89b01192-7ae7-44bf-9802-31bdf1601855" + } ] + }, { + "catenaXId" : "urn:uuid:81b1870e-7b2f-45dc-9e13-5bb57ce3fb25", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:81b1870e-7b2f-45dc-9e13-5bb57ce3fb25" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-684435018813792900642034", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:81b1870e-7b2f-45dc-9e13-5bb57ce3fb25", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-684435018813792900642034", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:81b1870e-7b2f-45dc-9e13-5bb57ce3fb25" ] + }, + "id" : "urn:uuid:2ad6705e-d5d5-439f-b003-f579028f22d0" + } ] + }, { + "catenaXId" : "urn:uuid:c1156524-1313-456e-b147-4f495f158583", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c1156524-1313-456e-b147-4f495f158583" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-020335692702967624650366", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c1156524-1313-456e-b147-4f495f158583", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-020335692702967624650366", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c1156524-1313-456e-b147-4f495f158583" ] + }, + "id" : "urn:uuid:264edf2d-5b67-4e76-b72c-0f2fd4732585" + } ] + }, { + "catenaXId" : "urn:uuid:d663b5e8-0594-4b2e-85df-6016be37f216", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d663b5e8-0594-4b2e-85df-6016be37f216" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-103004717114819554636482", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d663b5e8-0594-4b2e-85df-6016be37f216", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-103004717114819554636482", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d663b5e8-0594-4b2e-85df-6016be37f216" ] + }, + "id" : "urn:uuid:d76ce0c9-61f8-4dd8-ac07-39dbeab3253d" + } ] + }, { + "catenaXId" : "urn:uuid:04479d1c-1d77-4b82-a85f-514f20ff3672", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:04479d1c-1d77-4b82-a85f-514f20ff3672" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-594137127165634048113350", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04479d1c-1d77-4b82-a85f-514f20ff3672", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-594137127165634048113350", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:04479d1c-1d77-4b82-a85f-514f20ff3672" ] + }, + "id" : "urn:uuid:0c9dad14-551e-49fd-a8a9-ed4268f91383" + } ] + }, { + "catenaXId" : "urn:uuid:8dc5f023-fe95-40c9-808b-bd98d86c43ea", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8dc5f023-fe95-40c9-808b-bd98d86c43ea" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-326858735631575734013555", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8dc5f023-fe95-40c9-808b-bd98d86c43ea", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-326858735631575734013555", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:8dc5f023-fe95-40c9-808b-bd98d86c43ea" ] + }, + "id" : "urn:uuid:981fc926-f420-446a-92ee-28c992a7d589" + } ] + }, { + "catenaXId" : "urn:uuid:bf3b94a0-1d08-476e-b22f-ca0bc712d211", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bf3b94a0-1d08-476e-b22f-ca0bc712d211" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-774583455892616763915137", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bf3b94a0-1d08-476e-b22f-ca0bc712d211", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-774583455892616763915137", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bf3b94a0-1d08-476e-b22f-ca0bc712d211" ] + }, + "id" : "urn:uuid:e12c1772-0e1e-4dcd-a8c4-6c8341899a5d" + } ] + }, { + "catenaXId" : "urn:uuid:d537fe2e-5b76-4f15-bb13-bc5f3be9aee3", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d537fe2e-5b76-4f15-bb13-bc5f3be9aee3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-769489829595051695794366", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d537fe2e-5b76-4f15-bb13-bc5f3be9aee3", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-769489829595051695794366", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d537fe2e-5b76-4f15-bb13-bc5f3be9aee3" ] + }, + "id" : "urn:uuid:6233a493-9620-4491-bfec-74c01511d763" + } ] + }, { + "catenaXId" : "urn:uuid:11cdab08-699b-4646-ab47-475addeabd96", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:11cdab08-699b-4646-ab47-475addeabd96" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-248949175324297467043101", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:11cdab08-699b-4646-ab47-475addeabd96", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-248949175324297467043101", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:11cdab08-699b-4646-ab47-475addeabd96" ] + }, + "id" : "urn:uuid:126bb83e-9584-430c-99e3-563ab2255578" + } ] + }, { + "catenaXId" : "urn:uuid:17c56482-4f8c-4afb-a56e-58f3b11cf38e", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:17c56482-4f8c-4afb-a56e-58f3b11cf38e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-425035236265361822820611", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:17c56482-4f8c-4afb-a56e-58f3b11cf38e", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-425035236265361822820611", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:17c56482-4f8c-4afb-a56e-58f3b11cf38e" ] + }, + "id" : "urn:uuid:13ee9fd6-cf54-4bc5-bd26-c4dc62c69bd1" + } ] + }, { + "catenaXId" : "urn:uuid:9355267e-cf1f-4074-be48-3abd518df5e7", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9355267e-cf1f-4074-be48-3abd518df5e7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-823660530989814925115482", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9355267e-cf1f-4074-be48-3abd518df5e7", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-823660530989814925115482", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9355267e-cf1f-4074-be48-3abd518df5e7" ] + }, + "id" : "urn:uuid:ac4e2acf-8479-443d-b0ea-1f02c5f6078f" + } ] + }, { + "catenaXId" : "urn:uuid:075ae995-6bff-41fa-afee-68bc2be0f494", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:075ae995-6bff-41fa-afee-68bc2be0f494" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-225628477527501743637568", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:075ae995-6bff-41fa-afee-68bc2be0f494", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-225628477527501743637568", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:075ae995-6bff-41fa-afee-68bc2be0f494" ] + }, + "id" : "urn:uuid:77483ac8-c7a8-4d4b-865a-65bf05f7ea08" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", + "childItems" : [ { + "catenaXId" : "urn:uuid:6d8d1663-2f66-407c-be74-12b01eff8f49", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:76f63806-a591-42ab-9ce4-79e433eec2b3", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-652187133745834772975489", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-652187133745834772975489", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-652187133745834772975489", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3" ] + }, + "id" : "urn:uuid:630e5aed-fa30-4aad-be45-1af2c0239ea7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 53, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 37, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 58, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:6d8d1663-2f66-407c-be74-12b01eff8f49", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6d8d1663-2f66-407c-be74-12b01eff8f49" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "60869S5-54", + "key" : "manufacturerPartId" + }, { + "value" : "NO-689662300876290124665162", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6d8d1663-2f66-407c-be74-12b01eff8f49", + "partTypeInformation" : { + "manufacturerPartId" : "60869S5-54", + "customerPartId" : "60869S5-54", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 12, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 74, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42", + "childItems" : [ { + "catenaXId" : "urn:uuid:6a76f31a-3f21-4528-9240-a21d7d955233", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "99620J1-63", + "key" : "manufacturerPartId" + }, { + "value" : "NO-380499046056974289247875", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42", + "partTypeInformation" : { + "manufacturerPartId" : "99620J1-63", + "customerPartId" : "99620J1-63", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-380499046056974289247875", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "99620J1-63", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42" ] + }, + "id" : "urn:uuid:dd0a7588-72dd-4f63-8b98-ca05fd38f587" + } ] + }, { + "catenaXId" : "urn:uuid:6a76f31a-3f21-4528-9240-a21d7d955233", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6a76f31a-3f21-4528-9240-a21d7d955233" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "33714V0-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-575472380022067191363344", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6a76f31a-3f21-4528-9240-a21d7d955233", + "partTypeInformation" : { + "manufacturerPartId" : "33714V0-60", + "customerPartId" : "33714V0-60", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 14, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 87, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:76f63806-a591-42ab-9ce4-79e433eec2b3", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:76f63806-a591-42ab-9ce4-79e433eec2b3", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:76f63806-a591-42ab-9ce4-79e433eec2b3" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "71066B4-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-431583659041380588398475", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:76f63806-a591-42ab-9ce4-79e433eec2b3", + "partTypeInformation" : { + "manufacturerPartId" : "71066B4-09", + "customerPartId" : "71066B4-09", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1", + "childItems" : [ { + "catenaXId" : "urn:uuid:6dc8934f-423b-4320-ac9b-a07e7a19c7e0", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:147e4107-4195-4033-ba65-4a03f68bd37a", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "17830R4-78", + "key" : "manufacturerPartId" + }, { + "value" : "NO-899351814837202957842508", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1", + "partTypeInformation" : { + "manufacturerPartId" : "17830R4-78", + "customerPartId" : "17830R4-78", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-899351814837202957842508", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "17830R4-78", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1" ] + }, + "id" : "urn:uuid:5b61e8ce-8704-4875-9186-85b83b5b98ec" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 25, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:6dc8934f-423b-4320-ac9b-a07e7a19c7e0", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6dc8934f-423b-4320-ac9b-a07e7a19c7e0" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "83087G3-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-543466364809130421729057", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6dc8934f-423b-4320-ac9b-a07e7a19c7e0", + "partTypeInformation" : { + "manufacturerPartId" : "83087G3-09", + "customerPartId" : "83087G3-09", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 89, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 6, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623", + "childItems" : [ { + "catenaXId" : "urn:uuid:7f479070-492b-4d38-b837-da5915f134ee", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "13028S0-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-460698220004288024514354", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623", + "partTypeInformation" : { + "manufacturerPartId" : "13028S0-37", + "customerPartId" : "13028S0-37", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-460698220004288024514354", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13028S0-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623" ] + }, + "id" : "urn:uuid:60cb526a-18a0-4f64-a7c5-a80328eaa7c5" + } ] + }, { + "catenaXId" : "urn:uuid:7f479070-492b-4d38-b837-da5915f134ee", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7f479070-492b-4d38-b837-da5915f134ee" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "64482P4-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-096427405209590454931808", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7f479070-492b-4d38-b837-da5915f134ee", + "partTypeInformation" : { + "manufacturerPartId" : "64482P4-73", + "customerPartId" : "64482P4-73", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 60, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 68, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:147e4107-4195-4033-ba65-4a03f68bd37a", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:147e4107-4195-4033-ba65-4a03f68bd37a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "45739Q2-62", + "key" : "manufacturerPartId" + }, { + "value" : "NO-654932426951565580338462", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:147e4107-4195-4033-ba65-4a03f68bd37a", + "partTypeInformation" : { + "manufacturerPartId" : "45739Q2-62", + "customerPartId" : "45739Q2-62", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-654932426951565580338462", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45739Q2-62", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:147e4107-4195-4033-ba65-4a03f68bd37a" ] + }, + "id" : "urn:uuid:6c91370a-84c8-4a47-b8f2-81b4e0d00a00" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 5, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 21, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "childItems" : [ { + "catenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-851257309848886012932499", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-851257309848886012932499", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d" ] + }, + "id" : "urn:uuid:fc9b5d8d-381f-46ea-8236-5f3c41c25dbb" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 51, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 36, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 78, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-241698746738440560786173", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-241698746738440560786173", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, + "id" : "urn:uuid:f0bb5fea-5924-4786-ade7-8e2e28a461dd" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 48, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 33, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 7, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-755411763055037415484029", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-755411763055037415484029", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3" ] + }, + "id" : "urn:uuid:7c5cc9b6-03f1-4b47-bcf9-801791319885" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-16T06:19:46.345Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T02:52:02.345Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-694416291704403802553599", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-694416291704403802553599", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe" ] + }, + "id" : "urn:uuid:225d1f99-2a1c-4f29-ae8c-1ed280477392" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-23T08:43:54.354Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T17:57:59.354Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-350242045582895111527384", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-350242045582895111527384", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5" ] + }, + "id" : "urn:uuid:cdfc6e8f-fb4b-439f-a13e-c182645cbd92" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-06T12:46:05.363Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T10:11:06.363Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-621009609353129311252258", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-621009609353129311252258", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c" ] + }, + "id" : "urn:uuid:21a8672b-19c6-4a23-b8fa-5548bf47af88" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-03-20T18:01:58.374Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T00:15:17.374Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-168183479780756002877719", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-168183479780756002877719", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80" ] + }, + "id" : "urn:uuid:3aafa8fb-902a-45ad-a930-5b99a7aecfeb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-01T15:06:00.384Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T15:51:07.384Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-776482809996963840709451", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-776482809996963840709451", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5" ] + }, + "id" : "urn:uuid:fb882f12-b3fe-44f8-877e-3b77842305a4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-09-25T02:43:57.394Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T10:25:29.394Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-133647442945303745269961", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-133647442945303745269961", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1" ] + }, + "id" : "urn:uuid:8f78fe34-ace9-422c-aed7-86e9ef9377bc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-01-25T11:26:59.404Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T16:36:51.404Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-192153936864223283865182", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-192153936864223283865182", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce" ] + }, + "id" : "urn:uuid:50fbcc1e-71d2-437a-9885-669a7f130ddf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-09-19T08:04:35.414Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T02:52:17.414Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-350791210086442189547763", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-350791210086442189547763", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055" ] + }, + "id" : "urn:uuid:7f07a44e-0452-424f-8f2b-814224f8f126" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-27T18:08:05.423Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T06:47:03.423Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-867666810826884704505270", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-867666810826884704505270", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9" ] + }, + "id" : "urn:uuid:b58c5343-bcc8-48c1-bed2-8e03090edf79" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-07-19T06:06:04.432Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T08:33:36.432Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-477615990760085197315049", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-477615990760085197315049", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, + "id" : "urn:uuid:b324e54e-f67e-4a46-8273-39369e3483d0" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 75, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 74, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 18, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-016525122375467200442519", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-016525122375467200442519", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760" ] + }, + "id" : "urn:uuid:7d0da77c-0fbb-4969-93d9-27db0e4c2711" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-12-26T17:13:22.452Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T14:02:22.452Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-788645259467251262094267", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-788645259467251262094267", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14" ] + }, + "id" : "urn:uuid:01198e17-23c2-4b03-846b-cef7e6741cbb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-17T05:49:45.462Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T09:35:25.462Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-842200785667606655164955", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-842200785667606655164955", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703" ] + }, + "id" : "urn:uuid:36e4dd81-7bc1-455d-9ba3-b8ccb52864b4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-05-14T00:04:45.474Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T16:54:39.474Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-013389535055356437496198", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-013389535055356437496198", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb" ] + }, + "id" : "urn:uuid:9d3dc2b2-a4e5-44e7-bc28-165e4b2d1b15" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-07T08:16:57.484Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T18:10:18.484Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-800313250736661744811236", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-800313250736661744811236", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73" ] + }, + "id" : "urn:uuid:e27eb4c2-c9c4-48e8-9df5-13f994a2d455" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-12-05T15:22:54.496Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T17:14:33.496Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-698957758500789377479961", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-698957758500789377479961", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb" ] + }, + "id" : "urn:uuid:1a1663ba-2ae3-48fd-a6e0-b658e1833971" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-17T05:57:15.507Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T20:47:59.507Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-696586623017903731589488", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-696586623017903731589488", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503" ] + }, + "id" : "urn:uuid:6e8e8d31-45b6-4d48-8403-8c160d385a9e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-17T04:36:06.516Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T22:49:04.516Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-622843289839605877828560", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-622843289839605877828560", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966" ] + }, + "id" : "urn:uuid:d57ba3fd-6233-41f9-9386-2321d82637c1" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-03-14T19:02:59.525Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T00:07:30.525Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-704967593419908911131687", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-704967593419908911131687", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f" ] + }, + "id" : "urn:uuid:f389ed66-c3cb-4f1b-8fbe-313686be22f8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-26T05:53:12.534Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T01:01:05.534Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-537499010345210032827382", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-537499010345210032827382", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3" ] + }, + "id" : "urn:uuid:1e294d42-77f1-42af-a3d9-7ebd8fda81f6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-24T21:12:15.543Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T20:17:05.543Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-606142193002969494848031", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-606142193002969494848031", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, + "id" : "urn:uuid:00437b11-fee7-41a4-9fdc-64bc3e29b4af" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 62, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 51, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 35, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-589158803932163567616061", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-589158803932163567616061", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0" ] + }, + "id" : "urn:uuid:e43182b3-55a1-4ee7-bd0d-a60c9e985804" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-10T12:26:54.561Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T23:53:11.561Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-644796153974103759469372", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-644796153974103759469372", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725" ] + }, + "id" : "urn:uuid:4f8962b6-a636-44a7-acdc-e959d9ca3514" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-02T17:04:54.570Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T15:11:26.570Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-741469980226286533263374", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-741469980226286533263374", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4" ] + }, + "id" : "urn:uuid:19e5380f-cb49-4147-ad12-d2dbe5f550ab" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-06T04:38:06.580Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T04:59:46.580Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-798784714087142225037282", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-798784714087142225037282", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa" ] + }, + "id" : "urn:uuid:03067867-17f9-488e-b5c5-7eecee97b103" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-08-25T11:24:04.589Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T13:49:55.589Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-822980981706135397457022", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-822980981706135397457022", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7" ] + }, + "id" : "urn:uuid:51dee74a-ffa9-4459-9c3d-b97e2661a562" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-01-23T04:12:23.598Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T01:11:39.598Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-008400572748849593513550", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-008400572748849593513550", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d" ] + }, + "id" : "urn:uuid:de515813-ef16-4568-81bf-464e38e8364a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-12-19T08:12:52.607Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T04:03:26.607Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-080698542859228624278525", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-080698542859228624278525", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136" ] + }, + "id" : "urn:uuid:2c8f419e-dfbe-4158-af6b-1bc2bc50f49e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-26T19:01:42.616Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T22:47:56.616Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-881321126976716940134006", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-881321126976716940134006", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad" ] + }, + "id" : "urn:uuid:02acd416-82a0-4e77-92b4-2a7124cdf1b8" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-13T07:07:55.624Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T18:45:04.624Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-498431201675263660196400", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-498431201675263660196400", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc" ] + }, + "id" : "urn:uuid:8c0d8a54-01a6-4b55-974d-39dc7dda0615" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-25T10:27:58.633Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T22:09:21.633Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-505293097815217389929109", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-505293097815217389929109", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7" ] + }, + "id" : "urn:uuid:fbfa1a18-d8de-46f7-9591-8b6e3e8b9789" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-19T17:34:51.642Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T13:53:24.642Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-910576190246377414756645", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-910576190246377414756645", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, + "id" : "urn:uuid:6c0e5343-5f2e-4ea1-91f6-e66d61908e1d" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 50, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 14, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 83, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-290332878349197767967441", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-290332878349197767967441", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18" ] + }, + "id" : "urn:uuid:724641fc-1536-4c65-9643-a0c9eb83d87c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-15T12:22:42.660Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T15:03:00.660Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-406187165728668327690818", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-406187165728668327690818", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef" ] + }, + "id" : "urn:uuid:b146195e-41a2-4cf2-96b4-046d3c093f2e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-24T21:30:25.669Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T14:59:15.669Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-254145022577011359218155", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-254145022577011359218155", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce" ] + }, + "id" : "urn:uuid:ac3ff583-10b9-40e1-a3e7-167c43a4842c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-17T23:24:52.677Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T02:33:12.677Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-176905936848917738577546", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-176905936848917738577546", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46" ] + }, + "id" : "urn:uuid:2fbba80a-d7ea-4c55-bb4f-06a6b9bbf909" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-05-21T03:26:42.686Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T09:36:42.686Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-055518303126529568802242", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-055518303126529568802242", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6" ] + }, + "id" : "urn:uuid:4b062037-8b18-492e-9f4f-1039fe23eef4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-04-27T18:30:19.695Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T21:37:00.695Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-813650757885063809283064", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-813650757885063809283064", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca" ] + }, + "id" : "urn:uuid:9e7dd5c9-73a6-4a0c-a07a-1eb482f4afe2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-13T17:05:46.704Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T03:47:05.704Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-690522848756424717658718", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-690522848756424717658718", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593" ] + }, + "id" : "urn:uuid:13d75497-cc49-4fb3-97db-33fbd5be43eb" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-08-12T02:17:55.713Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T08:32:37.713Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-277298282449611127610966", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-277298282449611127610966", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04" ] + }, + "id" : "urn:uuid:79b6e561-620f-4848-8237-45b131f04427" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-17T10:13:38.724Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T20:00:19.724Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-089187656281955929732074", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-089187656281955929732074", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf" ] + }, + "id" : "urn:uuid:0cf38d18-66ed-4576-96fc-2151afea92e9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-13T16:33:57.735Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T07:06:12.735Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-684169887362546386986861", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-684169887362546386986861", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f" ] + }, + "id" : "urn:uuid:70d08053-ff78-42ee-898b-dab709d3815a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-07T06:05:15.746Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T01:52:32.746Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-920257833159919028783478", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-920257833159919028783478", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, + "id" : "urn:uuid:ee39f54f-ac96-41fe-ad65-07e88caf95b2" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 7, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 17, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 78, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-798213598241558203319778", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-798213598241558203319778", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72" ] + }, + "id" : "urn:uuid:cb5b2277-b3bd-4d60-8e0d-382b84b578f0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-07-15T01:08:49.768Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T23:26:35.768Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-885076049957209263885017", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-885076049957209263885017", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30" ] + }, + "id" : "urn:uuid:111df41c-e354-4d41-adcb-2ab463791054" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-03T02:14:40.779Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T14:31:03.779Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-633866972155406155426393", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-633866972155406155426393", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b" ] + }, + "id" : "urn:uuid:96802328-9775-49de-b48d-746db71ddfad" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-04-25T22:58:55.788Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T14:09:39.788Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-080560965536740614364469", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-080560965536740614364469", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222" ] + }, + "id" : "urn:uuid:06d7c8c5-7b34-4675-bcf6-60c2734fde66" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-11T07:49:48.798Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T00:49:01.798Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-130582441112255605907609", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-130582441112255605907609", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404" ] + }, + "id" : "urn:uuid:6de048b8-107d-4b59-8ca8-659bca71514c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-10-09T13:07:07.807Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-13T09:43:07.807Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-850683637034078956923122", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-850683637034078956923122", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a" ] + }, + "id" : "urn:uuid:e74e60b2-c3c9-4520-8840-31cb28394775" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-23T12:31:07.815Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T16:38:03.815Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-520711421646224804687986", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-520711421646224804687986", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821" ] + }, + "id" : "urn:uuid:3fada226-0e5e-4cc0-9555-64110c2f39bd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-11T18:35:54.824Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T16:58:25.824Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-497703599529312173417916", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-497703599529312173417916", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675" ] + }, + "id" : "urn:uuid:cf608013-1435-4abb-bfc2-5cc45a0f17d9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-08T16:26:57.834Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T15:45:16.834Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-909311059509916622620852", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-909311059509916622620852", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11" ] + }, + "id" : "urn:uuid:05d48697-4153-4d10-80a2-d9b3a755260e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-11T05:18:42.843Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T11:03:58.843Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-394597757590121142325506", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-394597757590121142325506", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927" ] + }, + "id" : "urn:uuid:1c2af0b8-13b1-4a81-8908-ad0d14fb2408" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-28T23:26:01.852Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T17:36:48.852Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-726119374078629064128687", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-726119374078629064128687", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, + "id" : "urn:uuid:18726669-14f2-49cb-88f9-1e0eeece1ac2" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 70, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 82, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-226335464906404064136902", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-226335464906404064136902", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df" ] + }, + "id" : "urn:uuid:de8202da-dfaa-4237-82f1-3a33a0a94b61" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-04-26T05:11:47.870Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-30T14:06:31.870Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-460797191054318176716731", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-460797191054318176716731", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86" ] + }, + "id" : "urn:uuid:410058b1-643e-45c9-b783-5d06781f3e84" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-22T08:32:32.879Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T23:18:17.879Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-796364229063650644885236", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-796364229063650644885236", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491" ] + }, + "id" : "urn:uuid:5c0a99ea-8f18-459f-bacf-524eebedbf4f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-22T15:58:12.888Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T18:35:29.888Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-711056858337444739344338", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-711056858337444739344338", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d" ] + }, + "id" : "urn:uuid:715ce2f1-6f94-4f0f-9e66-c1d75f943019" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-18T22:38:08.897Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T10:45:05.897Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-972140073587163917357832", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-972140073587163917357832", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47" ] + }, + "id" : "urn:uuid:54e94e0f-f20f-4354-8750-a90ccdfaf0fc" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-21T08:20:53.906Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T10:53:51.906Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-692310586459392296978613", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-692310586459392296978613", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f" ] + }, + "id" : "urn:uuid:903d2bc5-3e5a-4e89-902b-e815f954f78b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-05T21:52:25.915Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T03:29:33.915Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-537775944324358246899111", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-537775944324358246899111", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683" ] + }, + "id" : "urn:uuid:55887390-a8dc-4f60-a77e-9fc8b7411fe9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-03-17T03:51:16.924Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-07T20:34:27.924Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-670681456534991368908417", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-670681456534991368908417", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34" ] + }, + "id" : "urn:uuid:428a3fd4-23c8-4bdf-ae81-a57cc0d4a461" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-18T09:42:09.932Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T00:11:31.932Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-727822767321532036414152", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-727822767321532036414152", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb" ] + }, + "id" : "urn:uuid:9cba9993-7749-4c3a-949d-c87810bbd560" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-03-28T10:37:00.942Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T08:36:10.942Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-031968080737927729957567", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-031968080737927729957567", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a" ] + }, + "id" : "urn:uuid:a110effc-32c2-45cc-b93f-f8bd5d36539f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-05-24T14:17:17.950Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T16:28:41.950Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Sedan", + "catenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "engine" : { + "size" : 2998, + "power" : 152 + }, + "emptyWeight" : 1.79, + "fuel" : "hybrid petrol/electric", + "vehicleModel" : "Vehicle Hybrid", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "group" : "special equipment" + }, { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2022-04-01T20:09:59.976Z", + "mileageDistance" : 120000 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "childItems" : [ { + "catenaXId" : "urn:uuid:258f44c9-1949-4325-a7e2-20b56b253afc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4cc0fbca-a79c-475f-b4e4-74a3b1801770", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bae7c9de-1c79-497a-bd62-8875e5f68371", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:63cfd847-e616-41e7-b619-66c151de263c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e477aa4f-cea1-49d2-ac7d-70f81db9cd68", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6787e020-5152-4591-8038-8ff1b6ea6c28", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a4bb030e-ae6d-4707-b4e7-b4a7a1e6b6c8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:26de743a-19cf-4246-b088-24776e73372e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d42439ef-fba8-44be-8075-07c01c3da1a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c65c1a00-c32a-451a-87dc-24ba8de0befc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:75703d2d-a923-4664-8357-f5d0d5702713", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f90625ca-12a8-48d1-94c9-313e6b363b77", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:56ad3dde-6206-4c98-a404-93ed709016f0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:805e82c3-a261-4f69-9326-d8d02c49cc32", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1d19bd1d-25da-4406-8143-c43c3633b96b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ade56700-8c33-42eb-9253-038666690dd0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c13cc8f9-43c5-40e8-b213-bc96f9ed1b2e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:83f4e19e-f203-4cee-8f59-300f09605948", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5dd133f0-54d3-4086-a48b-f327e2ab3b3b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:da3cb6d1-2023-4dbe-bfbf-905885c70c27", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:92a6002e-4921-4573-9e75-98f9574bae08", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5f3253fb-1b4c-4d0d-9776-13367722f31a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:51f23ae0-f5af-4001-987f-ef71ab6c9349", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dd9c2b24-22e0-4cfd-ba14-d33e528be3f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6cad7bf5-f537-464d-961c-ca354c57102c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa1d0eee-72d3-4cd7-8da3-96a2ae0c5534", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:025d9b1d-3430-41d8-8f77-0d67c8795e8b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d0b5117d-1c02-4be8-9f4e-689f5e80e790", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9f9502b7-1ac3-441a-affc-1b4b00943463", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:705596ec-8705-4f18-a7da-ddb1661aa606", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "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" + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "PD-55", + "key" : "manufacturerPartId" + }, { + "value" : "OMANFUIZPURSIUFBC", + "key" : "partInstanceId" + }, { + "value" : "OMANFUIZPURSIUFBC", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-11-11T21:48:07.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "partTypeInformation" : { + "manufacturerPartId" : "PD-55", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Hybrid" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMANFUIZPURSIUFBC", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "PD-55", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "vehicle_hybrid.asm", + "description" : [ { + "language" : "en", + "text" : "Vehicle Hybrid" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, + "id" : "urn:uuid:a4293692-2084-4c9b-9153-e1288c53d477" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 81, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 66, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 21, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 19, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 49, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 61, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 70, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 16, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 27, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 9, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:258f44c9-1949-4325-a7e2-20b56b253afc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:258f44c9-1949-4325-a7e2-20b56b253afc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-030812678394197177124142", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:258f44c9-1949-4325-a7e2-20b56b253afc", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-030812678394197177124142", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "10030939-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine.asm", + "description" : [ { + "language" : "en", + "text" : "Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:258f44c9-1949-4325-a7e2-20b56b253afc" ] + }, + "id" : "urn:uuid:5d2e013a-ae76-4a96-a2bf-239ddca5f07c" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } ] + }, { + "catenaXId" : "urn:uuid:4cc0fbca-a79c-475f-b4e4-74a3b1801770", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4cc0fbca-a79c-475f-b4e4-74a3b1801770" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-771997497691495591657726", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4cc0fbca-a79c-475f-b4e4-74a3b1801770", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-771997497691495591657726", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "32494586-73", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "differential_gear.asm", + "description" : [ { + "language" : "en", + "text" : "Differential Gear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:4cc0fbca-a79c-475f-b4e4-74a3b1801770" ] + }, + "id" : "urn:uuid:a4a5b7aa-b8df-4a55-bf21-849b37890d51" + } ] + }, { + "catenaXId" : "urn:uuid:bae7c9de-1c79-497a-bd62-8875e5f68371", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bae7c9de-1c79-497a-bd62-8875e5f68371" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-599707615084474110676134", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bae7c9de-1c79-497a-bd62-8875e5f68371", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-599707615084474110676134", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "67034319-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "turbocharger.asm", + "description" : [ { + "language" : "en", + "text" : "Turbocharger" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:bae7c9de-1c79-497a-bd62-8875e5f68371" ] + }, + "id" : "urn:uuid:11f3b19e-d9a1-457c-ba8f-2392a6b569fe" + } ] + }, { + "catenaXId" : "urn:uuid:63cfd847-e616-41e7-b619-66c151de263c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:63cfd847-e616-41e7-b619-66c151de263c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-855187784219208626371701", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:63cfd847-e616-41e7-b619-66c151de263c", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-855187784219208626371701", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "73849201-61", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "catalysator.asm", + "description" : [ { + "language" : "en", + "text" : "Catalysator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:63cfd847-e616-41e7-b619-66c151de263c" ] + }, + "id" : "urn:uuid:6dc783e1-fde8-4c7a-ba68-82dc5c7ed73b" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab", + "childItems" : [ { + "catenaXId" : "urn:uuid:94bfd3e0-46b4-4633-bb56-7ffee15a2184", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-359621916612233505970315", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-359621916612233505970315", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22782277-50", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-l" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab" ] + }, + "id" : "urn:uuid:046f1d2e-a760-4769-b550-e29259e39544" + } ] + }, { + "catenaXId" : "urn:uuid:94bfd3e0-46b4-4633-bb56-7ffee15a2184", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:94bfd3e0-46b4-4633-bb56-7ffee15a2184" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-939567946422630842238570", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:94bfd3e0-46b4-4633-bb56-7ffee15a2184", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-939567946422630842238570", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:94bfd3e0-46b4-4633-bb56-7ffee15a2184" ] + }, + "id" : "urn:uuid:04f07eb8-7b6d-4f26-8b85-6bc17994482e" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a", + "childItems" : [ { + "catenaXId" : "urn:uuid:549df514-2045-4fb4-88c2-45e444fd93bb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a", + "bpnl" : "BPNL00000003CSGV", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-936493581444445298026735", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-936493581444445298026735", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657362-64", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_f-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door f-r" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a" ] + }, + "id" : "urn:uuid:01a4f974-03dd-4e16-a013-7f4dc49ce3d2" + } ] + }, { + "catenaXId" : "urn:uuid:549df514-2045-4fb4-88c2-45e444fd93bb", + "bpnl" : "BPNL00000000BJTL", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:549df514-2045-4fb4-88c2-45e444fd93bb" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-826385084925041896508776", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:549df514-2045-4fb4-88c2-45e444fd93bb", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-826385084925041896508776", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "95657762-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_key.asm", + "description" : [ { + "language" : "en", + "text" : "Door Key" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:549df514-2045-4fb4-88c2-45e444fd93bb" ] + }, + "id" : "urn:uuid:db6a62fb-3d17-40bf-b671-4b9e42019fcb" + } ] + }, { + "catenaXId" : "urn:uuid:e477aa4f-cea1-49d2-ac7d-70f81db9cd68", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e477aa4f-cea1-49d2-ac7d-70f81db9cd68" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-929707347272037906933864", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e477aa4f-cea1-49d2-ac7d-70f81db9cd68", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-929707347272037906933864", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "15635759-16", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-l.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-l" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:e477aa4f-cea1-49d2-ac7d-70f81db9cd68" ] + }, + "id" : "urn:uuid:df8ccf31-2717-47fb-a5b3-4f3e9abb4b52" + } ] + }, { + "catenaXId" : "urn:uuid:6787e020-5152-4591-8038-8ff1b6ea6c28", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6787e020-5152-4591-8038-8ff1b6ea6c28" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-501810204635395121987988", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6787e020-5152-4591-8038-8ff1b6ea6c28", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-501810204635395121987988", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "28673126-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "door_r-r.asm", + "description" : [ { + "language" : "en", + "text" : "Door r-r" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6787e020-5152-4591-8038-8ff1b6ea6c28" ] + }, + "id" : "urn:uuid:d592442d-497d-4602-b5ae-c1278bdc1e37" + } ] + }, { + "catenaXId" : "urn:uuid:a4bb030e-ae6d-4707-b4e7-b4a7a1e6b6c8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a4bb030e-ae6d-4707-b4e7-b4a7a1e6b6c8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-171097588587187519682532", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a4bb030e-ae6d-4707-b4e7-b4a7a1e6b6c8", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-171097588587187519682532", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "94421589-82", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engine_hood.asm", + "description" : [ { + "language" : "en", + "text" : "Engine hood" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:a4bb030e-ae6d-4707-b4e7-b4a7a1e6b6c8" ] + }, + "id" : "urn:uuid:aa2f135e-cc9e-4fe1-9a57-a75fbe50384b" + } ] + }, { + "catenaXId" : "urn:uuid:26de743a-19cf-4246-b088-24776e73372e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:26de743a-19cf-4246-b088-24776e73372e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-517410654347195259359058", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:26de743a-19cf-4246-b088-24776e73372e", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-517410654347195259359058", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "85023955-75", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tailgate.asm", + "description" : [ { + "language" : "en", + "text" : "Tailgate" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:26de743a-19cf-4246-b088-24776e73372e" ] + }, + "id" : "urn:uuid:722036b5-6248-4f5e-9edc-65359ef09455" + } ] + }, { + "catenaXId" : "urn:uuid:d42439ef-fba8-44be-8075-07c01c3da1a9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d42439ef-fba8-44be-8075-07c01c3da1a9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-301769629530242505542960", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d42439ef-fba8-44be-8075-07c01c3da1a9", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-301769629530242505542960", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "13769860-47", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_left.asm", + "description" : [ { + "language" : "en", + "text" : "Fender left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d42439ef-fba8-44be-8075-07c01c3da1a9" ] + }, + "id" : "urn:uuid:36348ba0-9c37-4a58-b07a-cae816ee647e" + } ] + }, { + "catenaXId" : "urn:uuid:c65c1a00-c32a-451a-87dc-24ba8de0befc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c65c1a00-c32a-451a-87dc-24ba8de0befc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-853826534409117776779270", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c65c1a00-c32a-451a-87dc-24ba8de0befc", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-853826534409117776779270", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "36643162-35", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "fender_right.asm", + "description" : [ { + "language" : "en", + "text" : "Fender right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c65c1a00-c32a-451a-87dc-24ba8de0befc" ] + }, + "id" : "urn:uuid:d2da752c-0d36-42c9-a5ef-47f7af69cf69" + } ] + }, { + "catenaXId" : "urn:uuid:75703d2d-a923-4664-8357-f5d0d5702713", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:75703d2d-a923-4664-8357-f5d0d5702713" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-038506588187677170665880", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:75703d2d-a923-4664-8357-f5d0d5702713", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-038506588187677170665880", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "54165444-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_front.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:75703d2d-a923-4664-8357-f5d0d5702713" ] + }, + "id" : "urn:uuid:0a0e6267-fceb-46cf-8cdf-3a8df8fcf9b5" + } ] + }, { + "catenaXId" : "urn:uuid:f90625ca-12a8-48d1-94c9-313e6b363b77", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f90625ca-12a8-48d1-94c9-313e6b363b77" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-599380047441385248003308", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f90625ca-12a8-48d1-94c9-313e6b363b77", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-599380047441385248003308", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "22768257-25", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "bumper_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Bumper rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:f90625ca-12a8-48d1-94c9-313e6b363b77" ] + }, + "id" : "urn:uuid:2cadb449-d8e1-4351-a3f5-438bb1dcfca5" + } ] + }, { + "catenaXId" : "urn:uuid:56ad3dde-6206-4c98-a404-93ed709016f0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:56ad3dde-6206-4c98-a404-93ed709016f0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-954888982518331178890455", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:56ad3dde-6206-4c98-a404-93ed709016f0", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-954888982518331178890455", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "65529521-37", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_left.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:56ad3dde-6206-4c98-a404-93ed709016f0" ] + }, + "id" : "urn:uuid:a4fefaae-71f3-4acf-b72a-e95819e800fb" + } ] + }, { + "catenaXId" : "urn:uuid:805e82c3-a261-4f69-9326-d8d02c49cc32", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:805e82c3-a261-4f69-9326-d8d02c49cc32" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-418211786873861195156954", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:805e82c3-a261-4f69-9326-d8d02c49cc32", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-418211786873861195156954", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "58471477-24", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "exterior_mirror_right.asm", + "description" : [ { + "language" : "en", + "text" : "Exterior mirror right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:805e82c3-a261-4f69-9326-d8d02c49cc32" ] + }, + "id" : "urn:uuid:c96cecee-6ee0-4156-861b-f30f6f5ac869" + } ] + }, { + "catenaXId" : "urn:uuid:1d19bd1d-25da-4406-8143-c43c3633b96b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1d19bd1d-25da-4406-8143-c43c3633b96b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-485733413328694194646880", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1d19bd1d-25da-4406-8143-c43c3633b96b", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-485733413328694194646880", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "09002013-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "trailer_coupling.asm", + "description" : [ { + "language" : "en", + "text" : "Trailer coupling" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:1d19bd1d-25da-4406-8143-c43c3633b96b" ] + }, + "id" : "urn:uuid:2a089207-6934-4765-9c9e-72733a02ee3f" + } ] + }, { + "catenaXId" : "urn:uuid:ade56700-8c33-42eb-9253-038666690dd0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ade56700-8c33-42eb-9253-038666690dd0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-466742535035071926177221", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ade56700-8c33-42eb-9253-038666690dd0", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-466742535035071926177221", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "43501996-98", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "dashboard.asm", + "description" : [ { + "language" : "en", + "text" : "Dashboard" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:ade56700-8c33-42eb-9253-038666690dd0" ] + }, + "id" : "urn:uuid:2e368503-7e32-4517-a0fe-edc72d7e2069" + } ] + }, { + "catenaXId" : "urn:uuid:c13cc8f9-43c5-40e8-b213-bc96f9ed1b2e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c13cc8f9-43c5-40e8-b213-bc96f9ed1b2e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-301251126746382677787978", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c13cc8f9-43c5-40e8-b213-bc96f9ed1b2e", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-301251126746382677787978", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "77795937-13", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "steering_wheel.asm", + "description" : [ { + "language" : "en", + "text" : "Steering wheel" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:c13cc8f9-43c5-40e8-b213-bc96f9ed1b2e" ] + }, + "id" : "urn:uuid:1e11431c-30d2-43ad-9d6e-0530bfc80a7d" + } ] + }, { + "catenaXId" : "urn:uuid:83f4e19e-f203-4cee-8f59-300f09605948", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:83f4e19e-f203-4cee-8f59-300f09605948" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-015292728753233341561777", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:83f4e19e-f203-4cee-8f59-300f09605948", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-015292728753233341561777", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "20125432-59", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_left.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator left" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:83f4e19e-f203-4cee-8f59-300f09605948" ] + }, + "id" : "urn:uuid:bc29523c-bdc0-45f2-a292-ac0d4c784d4d" + } ] + }, { + "catenaXId" : "urn:uuid:5dd133f0-54d3-4086-a48b-f327e2ab3b3b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5dd133f0-54d3-4086-a48b-f327e2ab3b3b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-159825487920478918298541", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5dd133f0-54d3-4086-a48b-f327e2ab3b3b", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-159825487920478918298541", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "19073706-76", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "indicator_right.asm", + "description" : [ { + "language" : "en", + "text" : "Indicator right" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5dd133f0-54d3-4086-a48b-f327e2ab3b3b" ] + }, + "id" : "urn:uuid:a5c419c6-9a79-415c-82cd-feda668d5091" + } ] + }, { + "catenaXId" : "urn:uuid:da3cb6d1-2023-4dbe-bfbf-905885c70c27", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:da3cb6d1-2023-4dbe-bfbf-905885c70c27" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-533451390705875263697171", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:da3cb6d1-2023-4dbe-bfbf-905885c70c27", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-533451390705875263697171", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45415162-57", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "led_headlight.asm", + "description" : [ { + "language" : "en", + "text" : "Led headlight" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:da3cb6d1-2023-4dbe-bfbf-905885c70c27" ] + }, + "id" : "urn:uuid:081751e4-5944-4ad5-b567-a1807769eb28" + } ] + }, { + "catenaXId" : "urn:uuid:92a6002e-4921-4573-9e75-98f9574bae08", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:92a6002e-4921-4573-9e75-98f9574bae08" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-360282337644524541980910", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:92a6002e-4921-4573-9e75-98f9574bae08", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-360282337644524541980910", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78141846-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "starter_motor.asm", + "description" : [ { + "language" : "en", + "text" : "Starter motor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:92a6002e-4921-4573-9e75-98f9574bae08" ] + }, + "id" : "urn:uuid:d3a6876a-db6b-4ba9-b2a3-e7f4fa43fd49" + } ] + }, { + "catenaXId" : "urn:uuid:5f3253fb-1b4c-4d0d-9776-13367722f31a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5f3253fb-1b4c-4d0d-9776-13367722f31a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-686398054031120850165238", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5f3253fb-1b4c-4d0d-9776-13367722f31a", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-686398054031120850165238", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "81324139-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "alternator.asm", + "description" : [ { + "language" : "en", + "text" : "Alternator" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:5f3253fb-1b4c-4d0d-9776-13367722f31a" ] + }, + "id" : "urn:uuid:b01c223b-d03d-4bab-b064-607966d07e1b" + } ] + }, { + "catenaXId" : "urn:uuid:51f23ae0-f5af-4001-987f-ef71ab6c9349", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:51f23ae0-f5af-4001-987f-ef71ab6c9349" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-200820491348926350678292", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:51f23ae0-f5af-4001-987f-ef71ab6c9349", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-200820491348926350678292", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57929013-09", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ac_compressor.asm", + "description" : [ { + "language" : "en", + "text" : "AC compressor" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:51f23ae0-f5af-4001-987f-ef71ab6c9349" ] + }, + "id" : "urn:uuid:faa485ec-f46c-436a-a044-1d4ac17a6ccc" + } ] + }, { + "catenaXId" : "urn:uuid:dd9c2b24-22e0-4cfd-ba14-d33e528be3f3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:dd9c2b24-22e0-4cfd-ba14-d33e528be3f3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-422701169529005041357171", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dd9c2b24-22e0-4cfd-ba14-d33e528be3f3", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-422701169529005041357171", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "61184040-23", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:dd9c2b24-22e0-4cfd-ba14-d33e528be3f3" ] + }, + "id" : "urn:uuid:69eb1ebb-9ee4-4a8a-9075-0ac23d280044" + } ] + }, { + "catenaXId" : "urn:uuid:6cad7bf5-f537-464d-961c-ca354c57102c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6cad7bf5-f537-464d-961c-ca354c57102c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-357471816872691915692869", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6cad7bf5-f537-464d-961c-ca354c57102c", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-357471816872691915692869", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "78744126-74", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "taillight_front.asm", + "description" : [ { + "language" : "en", + "text" : "Taillight front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:6cad7bf5-f537-464d-961c-ca354c57102c" ] + }, + "id" : "urn:uuid:c72539f5-6d96-4072-8ce6-0e4af3e80287" + } ] + }, { + "catenaXId" : "urn:uuid:aa1d0eee-72d3-4cd7-8da3-96a2ae0c5534", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aa1d0eee-72d3-4cd7-8da3-96a2ae0c5534" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-196311257371057609037404", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aa1d0eee-72d3-4cd7-8da3-96a2ae0c5534", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-196311257371057609037404", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "12093297-03", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_front.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part front" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:aa1d0eee-72d3-4cd7-8da3-96a2ae0c5534" ] + }, + "id" : "urn:uuid:568fc56f-feb4-42d7-b630-5f3592ca9da0" + } ] + }, { + "catenaXId" : "urn:uuid:025d9b1d-3430-41d8-8f77-0d67c8795e8b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:025d9b1d-3430-41d8-8f77-0d67c8795e8b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-454264103241355411986290", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:025d9b1d-3430-41d8-8f77-0d67c8795e8b", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-454264103241355411986290", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "88111709-49", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "axle_part_rear.asm", + "description" : [ { + "language" : "en", + "text" : "Axle part rear" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:025d9b1d-3430-41d8-8f77-0d67c8795e8b" ] + }, + "id" : "urn:uuid:d27c7482-722b-4628-b975-dfc8afef9ddb" + } ] + }, { + "catenaXId" : "urn:uuid:d0b5117d-1c02-4be8-9f4e-689f5e80e790", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d0b5117d-1c02-4be8-9f4e-689f5e80e790" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-035486087887780493362741", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d0b5117d-1c02-4be8-9f4e-689f5e80e790", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-035486087887780493362741", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "00871379-44", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "chassis.asm", + "description" : [ { + "language" : "en", + "text" : "Chassis" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:d0b5117d-1c02-4be8-9f4e-689f5e80e790" ] + }, + "id" : "urn:uuid:f104281b-e545-42a1-a88a-5d8033a22b84" + } ] + }, { + "catenaXId" : "urn:uuid:9f9502b7-1ac3-441a-affc-1b4b00943463", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9f9502b7-1ac3-441a-affc-1b4b00943463" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-030715457979978645278916", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9f9502b7-1ac3-441a-affc-1b4b00943463", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-030715457979978645278916", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "08901347-87", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "rims.asm", + "description" : [ { + "language" : "en", + "text" : "Rims" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:9f9502b7-1ac3-441a-affc-1b4b00943463" ] + }, + "id" : "urn:uuid:f74d6514-8947-44a7-911e-aea7aeb6fbb3" + } ] + }, { + "catenaXId" : "urn:uuid:705596ec-8705-4f18-a7da-ddb1661aa606", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:705596ec-8705-4f18-a7da-ddb1661aa606" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-094906819479519641076932", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:705596ec-8705-4f18-a7da-ddb1661aa606", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-094906819479519641076932", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "45863316-60", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tires.asm", + "description" : [ { + "language" : "en", + "text" : "Tires" + } ], + "submodelDescriptors" : [ ], + "globalAssetId" : { + "value" : [ "urn:uuid:705596ec-8705-4f18-a7da-ddb1661aa606" ] + }, + "id" : "urn:uuid:1b03dc5f-98d8-478f-a600-0efc3a48d3aa" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", + "childItems" : [ { + "catenaXId" : "urn:uuid:55506428-2817-42b5-be07-1c981f2526f3", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:08d040d4-54b9-40b6-8096-a1e738141249", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", + "bpnl" : "BPNL00000003B2OM", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-090185842215312302854089", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } ], + "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "driveType" : "combustion engine", + "oilType" : "Lifeguard Hybrid 2", + "spreading" : 6.79, + "torque" : 500, + "power" : 300, + "standardGearRatio" : { + "gear" : "1", + "ratio" : 4.1567 + }, + "oilCapacity" : 8.9, + "electricPerformance" : [ "VLhpfQGTMDYpsBZxvfBoeygjb" ], + "speedResistance" : { + "speed" : 7800, + "gear" : "1" + } + }, + "instructions" : { + "packagingInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "transportationInstructions" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "dismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "vehicleDismantlingProcedure" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "safetyMeasures" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ] + }, + "catenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-090185842215312302854089", + "key" : "PartInstanceID" + } ], + "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "manufacturerId" : "BPNL00000003B2OM" + }, + "sparePartSupplier" : [ { + "supplierId" : "BPNL1234567890ZZ", + "supplierContact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "sparePartName" : "torque converter" + } ], + "stateOfHealth" : { + "serviceHistory" : [ "2023-05-22T13:16:47.239+02:00" ], + "remanufacturing" : { + "productStatusValue" : "first life", + "remanufacturingDate" : "2023-05-22T13:16:47.239+02:00" + }, + "expectedLifespan" : 500000 + }, + "generalInformation" : { + "additionalInformation" : "JxkyvRnL", + "physicalDimensionsProperty" : { + "diameter" : 0.03, + "width" : 1000, + "length" : 20000.1, + "weight" : 100.7, + "height" : 0.1 + }, + "warrantyPeriod" : 60, + "productDescription" : "manual transmission", + "productType" : "8HP60MH" + }, + "sustainability" : { + "carbonFootprint" : { + "productOrSectorSpecificRules" : [ { + "otherOperatorName" : "NSF", + "ruleNames" : "ABC 2021", + "operator" : "PEF" + } ], + "crossSectoralStandardsUsed" : [ { + "crossSectoralStandard" : "GHG Protocol Product standard" + } ], + "co2FootprintTotal" : -1.7976931348623157E308 + }, + "substancesOfConcern" : [ "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" ], + "responsibleSourcingDocument" : [ { + "documentLink" : "https://www.xxx.pdf", + "documentTitle" : "Title A" + } ], + "recyclateContent" : { + "nickel" : -1.7976931348623157E308, + "lithium" : -1.7976931348623157E308, + "cobalt" : -1.7976931348623157E308, + "otherSubstance" : [ { + "substanceName" : "Lead", + "substancePercentage" : 8 + } ] + }, + "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-090185842215312302854089", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "1O222E8-43", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "transmission.asm", + "description" : [ { + "language" : "en", + "text" : "Transmission" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "transmissionPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395" ] + }, + "id" : "urn:uuid:2a80aebb-a6b2-4cbd-a93d-61f3398f0f30" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 66, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 72, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 26, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:55506428-2817-42b5-be07-1c981f2526f3", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:55506428-2817-42b5-be07-1c981f2526f3" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "29073W1-54", + "key" : "manufacturerPartId" + }, { + "value" : "NO-253318599587557381816330", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:55506428-2817-42b5-be07-1c981f2526f3", + "partTypeInformation" : { + "manufacturerPartId" : "29073W1-54", + "customerPartId" : "29073W1-54", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 39, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 83, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d", + "childItems" : [ { + "catenaXId" : "urn:uuid:0b468211-405e-4061-a727-776149fc35a8", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "57299D6-85", + "key" : "manufacturerPartId" + }, { + "value" : "NO-389688484701955827819388", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d", + "partTypeInformation" : { + "manufacturerPartId" : "57299D6-85", + "customerPartId" : "57299D6-85", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-389688484701955827819388", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "57299D6-85", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d" ] + }, + "id" : "urn:uuid:8a6435a7-4bd5-457d-899d-32bf6d7db2be" + } ] + }, { + "catenaXId" : "urn:uuid:0b468211-405e-4061-a727-776149fc35a8", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0b468211-405e-4061-a727-776149fc35a8" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "55228V7-79", + "key" : "manufacturerPartId" + }, { + "value" : "NO-455217723875246266478595", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0b468211-405e-4061-a727-776149fc35a8", + "partTypeInformation" : { + "manufacturerPartId" : "55228V7-79", + "customerPartId" : "55228V7-79", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 29, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 74, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:08d040d4-54b9-40b6-8096-a1e738141249", + "childItems" : [ ] + } ], + "catenaXId" : "urn:uuid:08d040d4-54b9-40b6-8096-a1e738141249", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:08d040d4-54b9-40b6-8096-a1e738141249" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "36700I1-65", + "key" : "manufacturerPartId" + }, { + "value" : "NO-423661681424235693970937", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:08d040d4-54b9-40b6-8096-a1e738141249", + "partTypeInformation" : { + "manufacturerPartId" : "36700I1-65", + "customerPartId" : "36700I1-65", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3", + "childItems" : [ { + "catenaXId" : "urn:uuid:6df1ee71-6ef6-4fa7-aa59-0f0a02e11aa1", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9fe020cb-a3ac-428d-b4b1-5f5db7f11937", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3", + "bpnl" : "BPNL00000003B5MJ", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "71993B8-07", + "key" : "manufacturerPartId" + }, { + "value" : "NO-962160958011969736359818", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3", + "partTypeInformation" : { + "manufacturerPartId" : "71993B8-07", + "customerPartId" : "71993B8-07", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-962160958011969736359818", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "71993B8-07", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "ecu.asm", + "description" : [ { + "language" : "en", + "text" : "ECU" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3" ] + }, + "id" : "urn:uuid:29606aff-f98f-475b-9b54-0d8ce5ff4b61" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 17, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:6df1ee71-6ef6-4fa7-aa59-0f0a02e11aa1", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6df1ee71-6ef6-4fa7-aa59-0f0a02e11aa1" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "82625C7-90", + "key" : "manufacturerPartId" + }, { + "value" : "NO-422560580683453190589935", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6df1ee71-6ef6-4fa7-aa59-0f0a02e11aa1", + "partTypeInformation" : { + "manufacturerPartId" : "82625C7-90", + "customerPartId" : "82625C7-90", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 70, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 62, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc", + "childItems" : [ { + "catenaXId" : "urn:uuid:49f3433b-5b0f-45a2-a18d-c18dd274d24b", + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc", + "bpnl" : "BPNL00000003B3NX", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "03007Z7-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-250691930648391589516281", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc", + "partTypeInformation" : { + "manufacturerPartId" : "03007Z7-68", + "customerPartId" : "03007Z7-68", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-250691930648391589516281", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "03007Z7-68", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "sensor.asm", + "description" : [ { + "language" : "en", + "text" : "Sensor" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc" ] + }, + "id" : "urn:uuid:552e070e-8fac-4cfa-989f-b812d342fc83" + } ] + }, { + "catenaXId" : "urn:uuid:49f3433b-5b0f-45a2-a18d-c18dd274d24b", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:49f3433b-5b0f-45a2-a18d-c18dd274d24b" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "57930Y8-67", + "key" : "manufacturerPartId" + }, { + "value" : "NO-924171254141151864322905", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:49f3433b-5b0f-45a2-a18d-c18dd274d24b", + "partTypeInformation" : { + "manufacturerPartId" : "57930Y8-67", + "customerPartId" : "57930Y8-67", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 43, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 12, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9fe020cb-a3ac-428d-b4b1-5f5db7f11937", + "bpnl" : "BPNL00000003B0Q0", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9fe020cb-a3ac-428d-b4b1-5f5db7f11937" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "37529X7-06", + "key" : "manufacturerPartId" + }, { + "value" : "NO-088460682429961285450256", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9fe020cb-a3ac-428d-b4b1-5f5db7f11937", + "partTypeInformation" : { + "manufacturerPartId" : "37529X7-06", + "customerPartId" : "37529X7-06", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-088460682429961285450256", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "37529X7-06", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "engineering_plastics.asm", + "description" : [ { + "language" : "en", + "text" : "Engineering Plastics" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9fe020cb-a3ac-428d-b4b1-5f5db7f11937" ] + }, + "id" : "urn:uuid:a7b000a7-b874-4695-8dcc-38f2bda18fc7" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 9, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 77, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ] + }, { + "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { + "productConditions" : "at least 1990 model", + "desiredPrice" : { + "cost" : 15340, + "currency" : "EUR" + }, + "returnConditions" : "Wishes to buy", + "requestDate" : "2022-01-01", + "needsReturn" : true, + "latestReturnDate" : "2025-01-01" + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "childItems" : [ { + "catenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-224468349898696771183049", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-224468349898696771183049", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "38049661-08", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "battery.asm", + "description" : [ { + "language" : "en", + "text" : "Battery" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "returnRequest", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "marketPlaceOffer", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629" ] + }, + "id" : "urn:uuid:3d1406aa-e55f-4734-b686-5631d5184bb7" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 69, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 28, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 77, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "incoterms" : "DAP (Delivered at Place)", + "image" : { + "name" : "eOMtThyhVNLWUZNRcBaQKxI", + "location" : "telnet://192.0.2.16:80/" + }, + "catenaXId" : "580d3adf-1981-44a0-a214-13d6ceed9379", + "quantity" : 50, + "mechanicalDamage" : true, + "unitOfMeasure" : "each", + "bundleOffer" : true, + "availabilityDate" : "2022-03-11", + "corroded" : true, + "pickupLocation" : { + "latitude" : 48.137154, + "longitude" : -117.28333 + }, + "burned" : true, + "condition" : "New", + "attachment" : [ { + "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location" : "ftp://ftp.is.co.za/rfc/rfc1808.txt" + } ], + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "4S7R7002DB", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "http://www.ietf.org/rfc/rfc2396.txt", + "oeNumber" : "4B0905851C", + "category" : { + "subCategory" : [ "Amplifiers, subwoofers, etc" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "BMW", + "brand" : "ZF", + "productDescription" : "BMW 3er (E36) BJ: 1996" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-166356355093966887173056", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-166356355093966887173056", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, + "id" : "urn:uuid:4d138b97-d8c8-48b0-af3e-f00bdc170338" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 61, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 66, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 68, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-852454933437368177975313", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-852454933437368177975313", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269" ] + }, + "id" : "urn:uuid:c51a06cf-0f1a-48ee-a251-d90a5fe3b4c0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-03T04:28:43.106Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T17:35:09.108Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-957449973259752533922943", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-957449973259752533922943", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc" ] + }, + "id" : "urn:uuid:042b51d4-b38a-4207-b15e-ccaba682a6bf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-03T14:22:26.118Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T09:28:55.118Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-646678096545214077230589", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-646678096545214077230589", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b" ] + }, + "id" : "urn:uuid:0ce7480e-73e1-456c-8bfb-2944c06b4af9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-16T03:58:03.128Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T07:54:17.128Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-088277802138867954114509", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-088277802138867954114509", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267" ] + }, + "id" : "urn:uuid:a43d8713-e8b3-4692-858e-bd37829e2e72" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-05-28T20:29:42.138Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-24T19:06:49.139Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-267075768361542300166076", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-267075768361542300166076", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9" ] + }, + "id" : "urn:uuid:c3029906-a0e6-4bd9-94b0-f6022cae853f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-16T08:10:12.149Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T09:04:45.149Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-133650154573784889306936", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-133650154573784889306936", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b" ] + }, + "id" : "urn:uuid:374c0a5b-2629-469b-b889-3fdc774187d6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-04-19T11:19:38.159Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T02:00:03.159Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-213510028095555094856946", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-213510028095555094856946", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297" ] + }, + "id" : "urn:uuid:6bbf61d9-e5b8-4362-b01f-a93444a9e6e9" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-18T23:53:23.168Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T07:02:55.168Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-629159102064235408161026", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-629159102064235408161026", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884" ] + }, + "id" : "urn:uuid:5e3923fb-fdcc-4d08-a16a-d66c2f750f66" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-07-26T14:47:47.178Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T02:51:57.178Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-736249248507442975164206", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-736249248507442975164206", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce" ] + }, + "id" : "urn:uuid:a6f7b72d-6bec-4c5a-9541-121a0a9e12ba" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-24T08:43:42.188Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T06:46:31.189Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-926657325085077378160558", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-926657325085077378160558", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9" ] + }, + "id" : "urn:uuid:f5b55d0f-7b78-4ceb-be72-fce8bbd6873e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-27T09:23:46.198Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T15:50:13.199Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-099213182600668678886774", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-099213182600668678886774", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, + "id" : "urn:uuid:ccc0b5b0-185d-4323-a910-f399ce6f1ef4" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 44, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 41, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 84, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-872142008462448501991802", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-872142008462448501991802", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe" ] + }, + "id" : "urn:uuid:5380709f-bad1-4cbd-95a3-664fe8fdbba3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-15T20:19:52.220Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-06T17:30:36.220Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-196463215390365159951648", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-196463215390365159951648", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e" ] + }, + "id" : "urn:uuid:3044d062-a49b-4751-b163-1f281cfa59b0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-29T08:02:57.232Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T20:28:55.233Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-871349748987057505962544", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-871349748987057505962544", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47" ] + }, + "id" : "urn:uuid:4e0898cb-4e29-4460-a294-31a39780880a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-20T11:40:58.242Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T10:09:19.242Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-086172447578296126114230", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-086172447578296126114230", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82" ] + }, + "id" : "urn:uuid:141978d5-2037-4cea-9024-ab94c080f3e2" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-03-23T07:41:25.251Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-11T18:58:36.251Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-295987948149147726028422", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-295987948149147726028422", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad" ] + }, + "id" : "urn:uuid:0ec409c7-4f3e-4df5-a16a-2b38900a2b2b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-27T07:18:47.260Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T01:02:31.260Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-181230768627835667987034", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-181230768627835667987034", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968" ] + }, + "id" : "urn:uuid:9d02b449-ae8e-4bd7-a3fb-1b382930a518" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-26T15:35:50.269Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T03:53:28.269Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-698673523260911356930418", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-698673523260911356930418", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba" ] + }, + "id" : "urn:uuid:28cd561c-94da-444a-8020-dd67883c511e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-17T08:06:41.279Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-27T03:11:44.279Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-713993613076047479107183", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-713993613076047479107183", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591" ] + }, + "id" : "urn:uuid:3a3e110e-406a-4fa9-ac56-6f1852f6e048" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-16T04:35:13.289Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T11:55:28.289Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-816313366481058978280361", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-816313366481058978280361", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5" ] + }, + "id" : "urn:uuid:d7d115e9-df1d-49f1-bf19-97812da8b73b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-06T04:03:41.298Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T07:05:24.298Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-114596741136426824608551", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-114596741136426824608551", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d" ] + }, + "id" : "urn:uuid:dd54631a-9c11-4ce7-b746-965b540912cf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-14T19:48:08.307Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-10T15:13:42.307Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-253427850089957628480951", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-253427850089957628480951", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, + "id" : "urn:uuid:cbabb85c-f824-405c-b629-98c9c74d38a6" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 24, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 12, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 13, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-346565794259885062389124", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-346565794259885062389124", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614" ] + }, + "id" : "urn:uuid:e26995b4-d45a-4e6e-b5ea-97134a8846ac" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-25T13:01:56.326Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T06:51:59.326Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-567831813689741253435998", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-567831813689741253435998", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf" ] + }, + "id" : "urn:uuid:621c2634-f7f6-4683-a81e-0a467f9c3b04" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-21T17:33:26.345Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-08T03:37:56.345Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-196778150422828498079260", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-196778150422828498079260", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd" ] + }, + "id" : "urn:uuid:4f2c0b35-b2b4-4935-b04e-a38d1c7a7c5a" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-25T03:26:55.355Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T00:14:10.355Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-024438084040979569632488", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-024438084040979569632488", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846" ] + }, + "id" : "urn:uuid:e56de530-1c7b-4c9e-973b-d40ce6170883" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-03T16:04:29.380Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-18T02:22:17.380Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-276627694228416656268043", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-276627694228416656268043", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a" ] + }, + "id" : "urn:uuid:b16b5937-334b-4b8f-adee-0d6b2f2abf5b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-19T17:42:25.389Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T18:52:56.389Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-992180469926580134573519", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-992180469926580134573519", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39" ] + }, + "id" : "urn:uuid:3e962cfd-76e9-4674-9d46-ebbdf1a6f230" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-08T07:29:38.398Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T03:06:41.399Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-323272377836279050525633", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-323272377836279050525633", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff" ] + }, + "id" : "urn:uuid:dbfea479-c7d0-44de-9993-e9f08a77f9a7" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-04-06T11:34:37.408Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T10:38:05.408Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-547835562906594699991313", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-547835562906594699991313", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa" ] + }, + "id" : "urn:uuid:7036f2f6-3b33-4347-bd1c-0f7c29f565d0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-26T13:54:50.417Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-03T02:21:04.417Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-041439261553174417542784", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-041439261553174417542784", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b" ] + }, + "id" : "urn:uuid:709ac0f2-3f8a-4712-847f-da03a8dcfaaa" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-23T06:59:47.426Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T06:30:07.426Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-670428902071590598801203", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-670428902071590598801203", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005" ] + }, + "id" : "urn:uuid:7c6ffac3-bb58-4962-83f2-55948a4a7b5d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-03-27T11:05:31.435Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T22:09:08.435Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-778856148233186625849045", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-778856148233186625849045", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, + "id" : "urn:uuid:43bf8102-d86b-47d4-bac4-b429cca05f90" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 17, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 9, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 83, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-891584586276340535271295", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-891584586276340535271295", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677" ] + }, + "id" : "urn:uuid:93c51f92-2725-4400-bcd5-ba7ba8d22a1d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-04-20T05:33:29.454Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T23:18:30.454Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-257633362121900368831566", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-257633362121900368831566", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e" ] + }, + "id" : "urn:uuid:9ee96628-22bd-4625-9b8f-d2479acd3910" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-03-31T05:37:18.463Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-09T22:04:56.463Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-221208560672321470999041", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-221208560672321470999041", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a" ] + }, + "id" : "urn:uuid:d15e8606-f5c4-4143-8632-ac9bfefede6f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-04-21T23:05:20.472Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-02T19:20:47.472Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-018928258460281511569051", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-018928258460281511569051", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38" ] + }, + "id" : "urn:uuid:cab0ec77-30d9-4efd-93ae-a2c5d4228691" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-08-25T13:00:52.484Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-17T05:42:12.484Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-228403602057093556966451", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-228403602057093556966451", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578" ] + }, + "id" : "urn:uuid:e14f7c0f-d753-4cd5-add4-3d7ac602cf60" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-08-13T17:20:44.494Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T21:25:51.494Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-670161629909050660388701", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-670161629909050660388701", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad" ] + }, + "id" : "urn:uuid:3e2b653c-ad57-4bba-a6aa-8ea59723a002" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-11T14:33:36.503Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-19T19:09:27.503Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-593247357426805723611053", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-593247357426805723611053", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b" ] + }, + "id" : "urn:uuid:ff0c49d0-10ad-4e39-8e0e-67c81e46772f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-14T20:01:31.512Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-15T17:55:34.512Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-424742271063484477444435", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-424742271063484477444435", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8" ] + }, + "id" : "urn:uuid:3defdeb8-15cd-41e4-a3e7-c79afc83bc1b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-05T22:36:01.521Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T06:10:21.521Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-978558165369669053864892", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-978558165369669053864892", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd" ] + }, + "id" : "urn:uuid:6c8fd95d-1a11-4056-bab9-c2d579c17ac3" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-02-05T07:29:20.532Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-23T19:07:35.532Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-822353494266592530213457", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-822353494266592530213457", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c" ] + }, + "id" : "urn:uuid:4e4ab886-0b3e-4c3b-b2df-59e632215bff" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-03-26T18:49:51.542Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-20T20:31:37.542Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "childItems" : [ { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-015321538366906905336306", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-015321538366906905336306", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, + "id" : "urn:uuid:4800f06d-794a-4acb-867e-4f9dfaf82858" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 32, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 83, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 78, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-157376922729737216392208", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-157376922729737216392208", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802" ] + }, + "id" : "urn:uuid:584517f1-1852-4e54-87b5-f423367b08c4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-03T21:33:55.562Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T16:10:11.562Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-942973457411548191982815", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-942973457411548191982815", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f" ] + }, + "id" : "urn:uuid:ee10ddb8-61b6-4892-9391-a78454161469" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-15T00:20:09.571Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-12T20:02:59.571Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-962645940696419346554014", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-962645940696419346554014", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0" ] + }, + "id" : "urn:uuid:05d2d598-b3f3-4539-b1c0-8aa1b550bbe4" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-22T10:49:28.580Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-04T18:28:56.580Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-749639123758736053060655", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-749639123758736053060655", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4" ] + }, + "id" : "urn:uuid:12c59776-2c21-4c95-ba27-dcc292a3ed4b" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-23T02:36:27.588Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T01:29:59.588Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-647676475511353479440506", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-647676475511353479440506", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2" ] + }, + "id" : "urn:uuid:ad304cb9-045b-4434-a8f5-0d7728a817d0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-05T15:55:48.597Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-14T13:16:52.597Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-242570492540947456496516", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-242570492540947456496516", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886" ] + }, + "id" : "urn:uuid:88d1aa3a-f3a4-4781-bd38-10b2ea6283b6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-09-16T06:39:06.606Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T02:47:33.606Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-528094939494641791604182", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-528094939494641791604182", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53" ] + }, + "id" : "urn:uuid:3919468b-b525-4140-8245-797f01db327d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-13T19:10:21.614Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T06:56:49.614Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-877738444941736300339689", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-877738444941736300339689", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c" ] + }, + "id" : "urn:uuid:9e90b38a-5ff3-4c05-a595-c588fe4530cd" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-01-21T00:37:14.623Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T01:57:27.623Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-337644870619058266734393", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-337644870619058266734393", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27" ] + }, + "id" : "urn:uuid:7cbc9ad5-7859-4fa4-9971-103e94ab5b31" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-01T01:32:19.633Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T09:06:19.633Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-204108785732130771824252", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-204108785732130771824252", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932" ] + }, + "id" : "urn:uuid:05964a3e-bcc0-482b-a9ce-bdce7b1faadf" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-16T07:50:16.641Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-16T05:18:06.641Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "childItems" : [ { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : "unit:kilogram" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:45260051-797c-4192-a267-13464af74381", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-884392731515886286627262", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-884392731515886286627262", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840837-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "hv_modul.asm", + "description" : [ { + "language" : "en", + "text" : "HV MODUL" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, + "id" : "urn:uuid:cdb46783-736c-4fbf-a284-b708c7909185" + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 2, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 47, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 7, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-251121264412518592901779", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-251121264412518592901779", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3" ] + }, + "id" : "urn:uuid:16c4d59e-3846-410a-b10c-53a62c0c6a4d" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-03-31T03:36:57.659Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-24T11:26:02.659Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-080687759306642730732959", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-080687759306642730732959", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8" ] + }, + "id" : "urn:uuid:eee48ddd-2613-413a-bde2-daa2822b38c6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-01-16T23:38:42.669Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-23T22:03:49.669Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-106871550629733343743690", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-106871550629733343743690", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2" ] + }, + "id" : "urn:uuid:8e250313-d37d-49b1-bd5e-840e423efe5f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-15T15:58:13.678Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-25T09:43:15.678Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-422361754821760353713756", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-422361754821760353713756", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498" ] + }, + "id" : "urn:uuid:02e96483-efba-484f-a08c-fdaf483ac666" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-11T12:04:03.687Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-26T14:57:09.688Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-337563561400467930721499", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-337563561400467930721499", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f" ] + }, + "id" : "urn:uuid:531db309-42b5-47ae-9987-7b2e54f4790e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-01-07T23:59:29.697Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-05T13:32:09.697Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-056361634107740426752614", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-056361634107740426752614", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47" ] + }, + "id" : "urn:uuid:14c113c2-1733-41b8-96f3-7dbdeffcac1e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-13T23:32:12.706Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-29T13:45:21.706Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-215200673272375725739763", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-215200673272375725739763", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355" ] + }, + "id" : "urn:uuid:1578d28c-d837-4dbe-9da3-92077d10904e" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-25T23:56:05.714Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-06-28T19:32:03.714Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:45260051-797c-4192-a267-13464af74381", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:45260051-797c-4192-a267-13464af74381", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:45260051-797c-4192-a267-13464af74381" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-181740784608591648556405", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:45260051-797c-4192-a267-13464af74381", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-181740784608591648556405", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:45260051-797c-4192-a267-13464af74381" ] + }, + "id" : "urn:uuid:70667daa-c760-4133-99ab-4d9e94ec64f6" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-06-23T22:56:28.725Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-01T04:45:35.725Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029", + "childItems" : [ { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-577628717624541517263428", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-577628717624541517263428", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029" ] + }, + "id" : "urn:uuid:07fdd4c6-2a9e-4913-86b5-02471d1f6ca0" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-12-30T08:06:44.736Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-22T05:15:31.736Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc", + "childItems" : [ { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-006851642543865488284658", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "NO-006851642543865488284658", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "8840838-04", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "zb_zelle.asm", + "description" : [ { + "language" : "en", + "text" : "ZB ZELLE" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryPass", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "physicalDimension", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "batteryProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc" ] + }, + "id" : "urn:uuid:2c334cf5-1464-4804-92f3-613d10dbf53f" + } ], + "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "diameter" : 32, + "length" : 142, + "width" : 26.5, + "weight" : 1.4688, + "height" : 61 + } ], + "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14T17:10:25.344+01:00", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161\\\\\\\\12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "X123456789012X12345678901234567", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-11-02T00:17:20.745Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2023-07-21T22:56:31.745Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147, + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } ] + }, { + "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Kabrio-Limousine", + "catenaXId" : "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161", + "engine" : { + "size" : 29098.930296067425, + "power" : 57369.90693017276 + }, + "emptyWeight" : 46796.102405149664, + "fuel" : "Verflüssigtes Erdgas (LNG)", + "vehicleModel" : "jjjjiocidqxlhdahlifonc", + "equipmentVariants" : [ { + "code" : "gom", + "description" : "widsrqrp", + "group" : "ygqjlmksegcxuuub" + }, { + "code" : "igjtydkgyiwvqwcaf", + "description" : "dengzxtnkgvvmxgemjtrpptiojodfkqe", + "group" : "tytucphwzo" + } ], + "anonymisedIdentifier" : "xgtgxdaaegohrmyvmd", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageDistance" : 50504.49606239662 + }, { + "mileagePhase" : "as maintained by workshop", + "mileageDistance" : 11750.078463355738 + }, { + "mileagePhase" : "as maintained by workshop", + "mileageDistance" : 38872.25881566364 + } ] + } ], + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161", + "childItems" : [ { + "catenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161", + "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction" : [ { + "catenaXId" : "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161", + "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" + } ], + "bpnl" : "BPNL00000003CML1", + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, { + "value" : "CG-51", + "key" : "manufacturerPartId" + }, { + "value" : "TXAQVMWGDTZMUEYWI", + "key" : "partInstanceId" + }, { + "value" : "TXAQVMWGDTZMUEYWI", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2018-10-20T08:19:37.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161", + "partTypeInformation" : { + "manufacturerPartId" : "CG-51", + "classification" : "product", + "nameAtManufacturer" : "TraceX A Model D" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "TXAQVMWGDTZMUEYWI", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "CG-51", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tracex_a_model_d.asm", + "description" : [ { + "language" : "en", + "text" : "TraceX A Model D" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "vehicleProductDescription", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "certificateOfDestruction", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161" ] + }, + "id" : "urn:uuid:851383d1-101a-49ba-8f1a-41d1165f7ef4" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 81, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 6, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 21, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 26, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 19, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 41, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 7, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 30, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 35, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 1, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", + "childItems" : [ { + "catenaXId" : "urn:uuid:8d366081-5d6f-47d2-bd7b-0fa6241cb2aa", + "quantity" : { + "quantityNumber" : 8, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e0efabc8-3d20-4c31-a98a-c72bf4a717a3", + "quantity" : { + "quantityNumber" : 8, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5c941efa-a74d-468a-b73c-e10c5684391e", + "quantity" : { + "quantityNumber" : 4, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:32bc8a04-f995-415c-9812-716f768aca30", + "quantity" : { + "quantityNumber" : 8, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "CG-48", + "key" : "manufacturerPartId" + }, { + "value" : "OMAUCUAPJCHRSGIJV", + "key" : "partInstanceId" + }, { + "value" : "OMAUCUAPJCHRSGIJV", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2018-07-18T23:53:53.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", + "partTypeInformation" : { + "manufacturerPartId" : "CG-48", + "classification" : "product", + "nameAtManufacturer" : "OEM C Engine" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMAUCUAPJCHRSGIJV", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "CG-48", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "oem_c_engine.asm", + "description" : [ { + "language" : "en", + "text" : "OEM C Engine" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85" ] + }, + "id" : "urn:uuid:ae473856-b4e6-4f6f-af5a-436eb94312d8" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 68, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 10, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 78, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 21, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 64, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 62, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 76, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 62, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 52, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 2, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8d366081-5d6f-47d2-bd7b-0fa6241cb2aa", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:8d366081-5d6f-47d2-bd7b-0fa6241cb2aa" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "49486X4-81", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-620185999650140230285588", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8d366081-5d6f-47d2-bd7b-0fa6241cb2aa", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "49486X4-81", + "manufacturerPartId" : "49486X4-81", + "classification" : "component", + "nameAtManufacturer" : "Tier C Piston Rod", + "nameAtCustomer" : "Tier C Piston Rod" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 60, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 8, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 40, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 40, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 54, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 8, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 34, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 33, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 35, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 72, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e0efabc8-3d20-4c31-a98a-c72bf4a717a3", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e0efabc8-3d20-4c31-a98a-c72bf4a717a3" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "01493P1-81", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-571721182343723500862486", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0efabc8-3d20-4c31-a98a-c72bf4a717a3", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "01493P1-81", + "manufacturerPartId" : "01493P1-81", + "classification" : "component", + "nameAtManufacturer" : "Tier C Piston Rod", + "nameAtCustomer" : "Tier C Piston Rod" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 58, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 47, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 41, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 60, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 42, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 30, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 48, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 64, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 19, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 51, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5c941efa-a74d-468a-b73c-e10c5684391e", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5c941efa-a74d-468a-b73c-e10c5684391e" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "64273Y0-86", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-282821707504988703387760", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5c941efa-a74d-468a-b73c-e10c5684391e", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "64273Y0-86", + "manufacturerPartId" : "64273Y0-86", + "classification" : "component", + "nameAtManufacturer" : "Tier C Piston Rod", + "nameAtCustomer" : "Tier C Piston Rod" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 5, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 53, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 36, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 20, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 24, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 67, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 25, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 45, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 26, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 89, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:32bc8a04-f995-415c-9812-716f768aca30", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:32bc8a04-f995-415c-9812-716f768aca30" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "30541Z1-68", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-835228915839555024459894", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:32bc8a04-f995-415c-9812-716f768aca30", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "30541Z1-68", + "manufacturerPartId" : "30541Z1-68", + "classification" : "component", + "nameAtManufacturer" : "Tier C Piston Rod", + "nameAtCustomer" : "Tier C Piston Rod" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 37, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 55, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 7, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 51, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 0, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 58, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 78, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 33, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 56, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 51, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", + "childItems" : [ { + "catenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", + "quantity" : { + "quantityNumber" : 4, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "IG-10", + "key" : "manufacturerPartId" + }, { + "value" : "OMCTFVAAAAOULLCDW", + "key" : "partInstanceId" + }, { + "value" : "OMCTFVAAAAOULLCDW", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2020-03-23T08:58:30.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", + "partTypeInformation" : { + "manufacturerPartId" : "IG-10", + "classification" : "product", + "nameAtManufacturer" : "TraceX B Door Front Right" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCTFVAAAAOULLCDW", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "IG-10", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tracex_b_door_front_right.asm", + "description" : [ { + "language" : "en", + "text" : "TraceX B Door Front Right" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b" ] + }, + "id" : "urn:uuid:74e0b752-5c0e-4dd1-972c-eaee4c624d56" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 75, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 22, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 59, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 49, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 33, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 1, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 60, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 66, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 5, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 54, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", + "childItems" : [ { + "catenaXId" : "urn:uuid:f39ef86f-c1be-4c09-b61f-b7d12db688e5", + "quantity" : { + "quantityNumber" : 4, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:93aab108-d421-420d-9f18-967f4ba5a55e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:33c40622-6e9b-478e-a6dd-caeb5deaea51", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9cd763dc-a258-4e8e-bc32-200647016ad3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "JM-53", + "key" : "manufacturerPartId" + }, { + "value" : "OMAQYYIUPTVCRPOYY", + "key" : "partInstanceId" + }, { + "value" : "OMAQYYIUPTVCRPOYY", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-06-23T16:56:12.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", + "partTypeInformation" : { + "manufacturerPartId" : "JM-53", + "classification" : "product", + "nameAtManufacturer" : "TraceX A Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMAQYYIUPTVCRPOYY", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "JM-53", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tracex_a_door_key.asm", + "description" : [ { + "language" : "en", + "text" : "TraceX A Door Key" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280" ] + }, + "id" : "urn:uuid:33aab9d5-dfb3-4654-b711-d65d1652aaa4" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 11, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 47, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 3, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 27, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 21, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 67, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 66, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 9, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 82, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 35, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f39ef86f-c1be-4c09-b61f-b7d12db688e5", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:f39ef86f-c1be-4c09-b61f-b7d12db688e5" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "35014B9-50", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-019581389044446500705393", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f39ef86f-c1be-4c09-b61f-b7d12db688e5", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "35014B9-50", + "manufacturerPartId" : "35014B9-50", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 50, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 61, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 81, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 26, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 61, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 86, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 39, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 80, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 67, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 10, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:93aab108-d421-420d-9f18-967f4ba5a55e", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:93aab108-d421-420d-9f18-967f4ba5a55e" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "45979T0-46", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-682092657674758619813567", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:93aab108-d421-420d-9f18-967f4ba5a55e", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "45979T0-46", + "manufacturerPartId" : "45979T0-46", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 64, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 1, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 71, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 36, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 18, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 64, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 67, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 57, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 33, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 73, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:33c40622-6e9b-478e-a6dd-caeb5deaea51", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:33c40622-6e9b-478e-a6dd-caeb5deaea51" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "85696C4-36", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-022785641855669119419290", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:33c40622-6e9b-478e-a6dd-caeb5deaea51", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "85696C4-36", + "manufacturerPartId" : "85696C4-36", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 36, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 32, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 58, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 13, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 72, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 55, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 61, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 40, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 32, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 60, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9cd763dc-a258-4e8e-bc32-200647016ad3", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9cd763dc-a258-4e8e-bc32-200647016ad3" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "52247Z0-48", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-028535057999265696153968", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9cd763dc-a258-4e8e-bc32-200647016ad3", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "52247Z0-48", + "manufacturerPartId" : "52247Z0-48", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 54, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 3, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 89, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 24, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 41, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 71, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 10, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 70, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 59, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 11, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", + "childItems" : [ { + "catenaXId" : "urn:uuid:884c4fff-44f1-495b-9faa-c9b338d3a0b9", + "quantity" : { + "quantityNumber" : 4, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b5f69c2b-2640-4634-9040-deb78c251f8a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:22e1a55d-b713-4652-a647-f3e10bf21654", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1eee08c5-ad4e-42bc-9cea-98a0cf3a8a8a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", + "bpnl" : "BPNL00000003AZQP", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "NK-05", + "key" : "manufacturerPartId" + }, { + "value" : "OMCNOXZZQZHQSCYPD", + "key" : "partInstanceId" + }, { + "value" : "OMCNOXZZQZHQSCYPD", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2020-10-16T15:23:14.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", + "partTypeInformation" : { + "manufacturerPartId" : "NK-05", + "classification" : "product", + "nameAtManufacturer" : "TraceX A Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMCNOXZZQZHQSCYPD", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "NK-05", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tracex_a_door_key.asm", + "description" : [ { + "language" : "en", + "text" : "TraceX A Door Key" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f" ] + }, + "id" : "urn:uuid:1ff92441-23a4-4769-b53f-90dea93ecf1f" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 56, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 27, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 3, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 68, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 46, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 66, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 56, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 18, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 21, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:884c4fff-44f1-495b-9faa-c9b338d3a0b9", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:884c4fff-44f1-495b-9faa-c9b338d3a0b9" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "02332X3-96", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-537577729377305456003215", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:884c4fff-44f1-495b-9faa-c9b338d3a0b9", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "02332X3-96", + "manufacturerPartId" : "02332X3-96", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 1, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 67, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 82, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 46, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 21, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 39, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 4, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 34, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 76, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 62, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b5f69c2b-2640-4634-9040-deb78c251f8a", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b5f69c2b-2640-4634-9040-deb78c251f8a" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "21861S2-22", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-229816511840493199011298", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b5f69c2b-2640-4634-9040-deb78c251f8a", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "21861S2-22", + "manufacturerPartId" : "21861S2-22", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 18, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 67, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 3, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 2, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 40, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 57, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 14, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 13, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 52, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 21, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:22e1a55d-b713-4652-a647-f3e10bf21654", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:22e1a55d-b713-4652-a647-f3e10bf21654" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "00941L7-47", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-962831535382007786809192", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:22e1a55d-b713-4652-a647-f3e10bf21654", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "00941L7-47", + "manufacturerPartId" : "00941L7-47", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 0, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 79, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 19, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 42, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 5, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 34, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 35, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 44, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 83, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 57, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:1eee08c5-ad4e-42bc-9cea-98a0cf3a8a8a", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1eee08c5-ad4e-42bc-9cea-98a0cf3a8a8a" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "42180T5-46", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-183999908433276119687774", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1eee08c5-ad4e-42bc-9cea-98a0cf3a8a8a", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "42180T5-46", + "manufacturerPartId" : "42180T5-46", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 5, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 20, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 36, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 75, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 89, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 56, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 72, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 44, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 31, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 81, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", + "childItems" : [ { + "catenaXId" : "urn:uuid:3a90004c-8c41-4046-9471-c21a9fe3f3b4", + "quantity" : { + "quantityNumber" : 4, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e170d0a8-00bf-49a6-8048-e6aeabc286bc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a0ca972d-a4c8-49a8-89b0-5825e87b4d8f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:14e7fe6d-3d8c-4aa7-a3e2-8b337327f7fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "MV-42", + "key" : "manufacturerPartId" + }, { + "value" : "OMATYAQDRXVQGPKMQ", + "key" : "partInstanceId" + }, { + "value" : "OMATYAQDRXVQGPKMQ", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2014-04-21T06:45:57.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", + "partTypeInformation" : { + "manufacturerPartId" : "MV-42", + "classification" : "product", + "nameAtManufacturer" : "TraceX A Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMATYAQDRXVQGPKMQ", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "MV-42", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tracex_a_door_key.asm", + "description" : [ { + "language" : "en", + "text" : "TraceX A Door Key" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91" ] + }, + "id" : "urn:uuid:e51d4c23-c6f1-41fd-9325-7262af486bd1" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 36, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 77, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 17, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 63, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 59, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 69, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 23, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 40, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 68, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 27, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:3a90004c-8c41-4046-9471-c21a9fe3f3b4", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3a90004c-8c41-4046-9471-c21a9fe3f3b4" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "05805H6-57", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-598993805519013883878620", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3a90004c-8c41-4046-9471-c21a9fe3f3b4", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "05805H6-57", + "manufacturerPartId" : "05805H6-57", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 40, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 28, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 43, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 58, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 73, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 53, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 78, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 83, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 51, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 67, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e170d0a8-00bf-49a6-8048-e6aeabc286bc", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e170d0a8-00bf-49a6-8048-e6aeabc286bc" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "42409B9-29", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-164643589633950690366539", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e170d0a8-00bf-49a6-8048-e6aeabc286bc", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "42409B9-29", + "manufacturerPartId" : "42409B9-29", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 0, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 41, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 49, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 31, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 52, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 40, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 29, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 72, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 34, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 13, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a0ca972d-a4c8-49a8-89b0-5825e87b4d8f", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a0ca972d-a4c8-49a8-89b0-5825e87b4d8f" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "23832H1-29", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-470232817725067326952787", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a0ca972d-a4c8-49a8-89b0-5825e87b4d8f", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "23832H1-29", + "manufacturerPartId" : "23832H1-29", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 74, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 23, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 4, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 2, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 31, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 7, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 13, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 36, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 70, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 12, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:14e7fe6d-3d8c-4aa7-a3e2-8b337327f7fa", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:14e7fe6d-3d8c-4aa7-a3e2-8b337327f7fa" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "01842C4-10", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-907425193460705462127389", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:14e7fe6d-3d8c-4aa7-a3e2-8b337327f7fa", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "01842C4-10", + "manufacturerPartId" : "01842C4-10", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 84, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 20, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 83, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 47, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 18, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 49, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 40, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 11, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 31, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 63, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a", + "childItems" : [ { + "catenaXId" : "urn:uuid:19d0c853-bbc8-4e1b-ac98-ffb7d9a0c350", + "quantity" : { + "quantityNumber" : 4, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e3a368e5-c4e6-4e59-be7a-77a6846c404c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:884c62c4-773f-407a-b1a6-b84cd75c3326", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a549669c-6709-4956-b9c8-a5b708d1873b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a", + "bpnl" : "BPNL00000003AYRE", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "KC-89", + "key" : "manufacturerPartId" + }, { + "value" : "OMAZVJKMRKPABVNWE", + "key" : "partInstanceId" + }, { + "value" : "OMAZVJKMRKPABVNWE", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-10-07T04:34:32.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a", + "partTypeInformation" : { + "manufacturerPartId" : "KC-89", + "classification" : "product", + "nameAtManufacturer" : "TraceX A Door Key" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMAZVJKMRKPABVNWE", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "KC-89", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "tracex_a_door_key.asm", + "description" : [ { + "language" : "en", + "text" : "TraceX A Door Key" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a" ] + }, + "id" : "urn:uuid:75b88402-8c78-4b5c-b6b1-4cda76de324c" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 12, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 14, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 76, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 86, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 74, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 55, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 27, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 14, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 54, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 86, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:19d0c853-bbc8-4e1b-ac98-ffb7d9a0c350", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:19d0c853-bbc8-4e1b-ac98-ffb7d9a0c350" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "74601C8-09", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-239381300874935919326726", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:19d0c853-bbc8-4e1b-ac98-ffb7d9a0c350", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "74601C8-09", + "manufacturerPartId" : "74601C8-09", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 35, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 15, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 48, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 15, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 27, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 8, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 74, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 44, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 23, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 42, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e3a368e5-c4e6-4e59-be7a-77a6846c404c", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e3a368e5-c4e6-4e59-be7a-77a6846c404c" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "31633P6-60", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-364639587227194645444931", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e3a368e5-c4e6-4e59-be7a-77a6846c404c", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "31633P6-60", + "manufacturerPartId" : "31633P6-60", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 62, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 17, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 85, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 14, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 30, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 43, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 43, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 47, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 75, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 4, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:884c62c4-773f-407a-b1a6-b84cd75c3326", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:884c62c4-773f-407a-b1a6-b84cd75c3326" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "57565N8-98", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-591936474144479017188130", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:884c62c4-773f-407a-b1a6-b84cd75c3326", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "57565N8-98", + "manufacturerPartId" : "57565N8-98", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 42, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 80, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 64, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 37, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 68, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 86, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 29, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 55, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 53, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 25, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a549669c-6709-4956-b9c8-a5b708d1873b", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a549669c-6709-4956-b9c8-a5b708d1873b" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "33471F0-65", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-735203366357070775825227", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a549669c-6709-4956-b9c8-a5b708d1873b", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "33471F0-65", + "manufacturerPartId" : "33471F0-65", + "classification" : "component", + "nameAtManufacturer" : "OEM C Key fund", + "nameAtCustomer" : "OEM C Key fund" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 88, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 37, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 2, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 71, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 61, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 38, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 69, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 7, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 85, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 77, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "childItems" : [ { + "catenaXId" : "urn:uuid:939aee14-2326-4703-9634-2033acde9e90", + "quantity" : { + "quantityNumber" : 6, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1ffb9813-7a5f-49fd-87e5-1ff50b5e4d85", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ef681011-1486-4081-aba8-4e75cdd5b62f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6b2b1c96-23b3-44bb-8a23-f43e8afda33d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1b6c824f-f352-4991-a23a-bc3783178682", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:49801bd9-32a9-4e76-8e7f-1b043dd2b422", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "bpnl" : "BPNL00000003AVTH", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154" + } ], + "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "NY-95", + "key" : "manufacturerPartId" + }, { + "value" : "OMBYPYALNJJFRGYNU", + "key" : "partInstanceId" + }, { + "value" : "OMBYPYALNJJFRGYNU", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2014-10-21T22:06:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "partTypeInformation" : { + "manufacturerPartId" : "NY-95", + "classification" : "product", + "nameAtManufacturer" : "OEM A Car Body" + } + } ], + "urn:bamm:io.catenax.aas:1.0.0#AAS" : [ { + "specificAssetId" : [ { + "value" : "OMBYPYALNJJFRGYNU", + "key" : "http://pwc.t-systems.com/datamodel/common" + }, { + "value" : "NY-95", + "key" : "urn:VR:wt.part.WTPart#" + } ], + "idShort" : "oem_a_car_body.asm", + "description" : [ { + "language" : "en", + "text" : "OEM A Car Body" + } ], + "submodelDescriptors" : [ { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "materialForRecycling", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + }, { + "semanticId" : [ { + "keys" : [ { + "type" : "GlobalReference", + "value" : "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" + } ], + "type" : "ExternalReference" + } ], + "endpoints" : [ { + "interface" : "SUBMODEL-3.0", + "protocolInformation" : { + "subprotocolBodyEncoding" : "plain", + "subprotocol" : "IDS", + "securityAttributes" : [ { + "type" : "NONE", + "value" : "NONE", + "key" : "NONE" + } ], + "endpointProtocolVersion" : [ "1.1" ], + "href" : "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", + "subprotocolBody" : "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", + "endpointProtocol" : "HTTP" + } + } ], + "idShort" : "singleLevelBomAsBuilt", + "id" : "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" + } ], + "globalAssetId" : { + "value" : [ "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154" ] + }, + "id" : "urn:uuid:8f227f55-4282-47a6-b417-c97a6456a748" + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 8, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 76, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 78, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 4, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 60, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 68, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 37, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 31, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 60, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 48, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:939aee14-2326-4703-9634-2033acde9e90", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:939aee14-2326-4703-9634-2033acde9e90" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "45373C0-54", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-838232002027479339672873", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:939aee14-2326-4703-9634-2033acde9e90", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "45373C0-54", + "manufacturerPartId" : "45373C0-54", + "classification" : "component", + "nameAtManufacturer" : "Trace X B Doors", + "nameAtCustomer" : "Trace X B Doors" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 12, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 35, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 29, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 3, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 77, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 20, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 34, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 47, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 39, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 77, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:1ffb9813-7a5f-49fd-87e5-1ff50b5e4d85", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1ffb9813-7a5f-49fd-87e5-1ff50b5e4d85" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "07569R8-66", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-260968413206539591039969", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1ffb9813-7a5f-49fd-87e5-1ff50b5e4d85", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "07569R8-66", + "manufacturerPartId" : "07569R8-66", + "classification" : "component", + "nameAtManufacturer" : "Trace X B Doors", + "nameAtCustomer" : "Trace X B Doors" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 36, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 88, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 89, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 89, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 34, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 4, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 67, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 2, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 29, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 7, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:ef681011-1486-4081-aba8-4e75cdd5b62f", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:ef681011-1486-4081-aba8-4e75cdd5b62f" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "96028S4-35", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-588912503227312078028337", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ef681011-1486-4081-aba8-4e75cdd5b62f", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "96028S4-35", + "manufacturerPartId" : "96028S4-35", + "classification" : "component", + "nameAtManufacturer" : "Trace X B Doors", + "nameAtCustomer" : "Trace X B Doors" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 76, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 64, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 85, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 21, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 74, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 18, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 4, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 54, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 74, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 20, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:6b2b1c96-23b3-44bb-8a23-f43e8afda33d", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6b2b1c96-23b3-44bb-8a23-f43e8afda33d" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "99069G8-66", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-983998630060179151366972", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6b2b1c96-23b3-44bb-8a23-f43e8afda33d", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "99069G8-66", + "manufacturerPartId" : "99069G8-66", + "classification" : "component", + "nameAtManufacturer" : "Trace X B Doors", + "nameAtCustomer" : "Trace X B Doors" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 24, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 1, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 30, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 18, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 68, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 30, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 19, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 53, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 83, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:1b6c824f-f352-4991-a23a-bc3783178682", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1b6c824f-f352-4991-a23a-bc3783178682" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "67415D5-18", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-716337256529208271558763", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1b6c824f-f352-4991-a23a-bc3783178682", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "67415D5-18", + "manufacturerPartId" : "67415D5-18", + "classification" : "component", + "nameAtManufacturer" : "Trace X B Doors", + "nameAtCustomer" : "Trace X B Doors" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 67, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 30, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 2, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 73, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 61, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 56, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 21, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 14, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 57, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 59, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:49801bd9-32a9-4e76-8e7f-1b043dd2b422", + "bpnl" : "BPNL00000003AXS3", + "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt" : [ { + "parentParts" : [ { + "parentCatenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:49801bd9-32a9-4e76-8e7f-1b043dd2b422" + } ], + "urn:bamm:io.catenax.batch:1.0.2#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "ManufacturerID" + }, { + "value" : "19466Z8-29", + "key" : "ManufacturerPartID" + }, { + "value" : "NO-058456048772521487605436", + "key" : "PartInstanceID" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:49801bd9-32a9-4e76-8e7f-1b043dd2b422", + "partTypeInformation" : { + "manufacturerPartID" : "7A047C7-01", + "customerPartId" : "19466Z8-29", + "manufacturerPartId" : "19466Z8-29", + "classification" : "component", + "nameAtManufacturer" : "Trace X B Doors", + "nameAtCustomer" : "Trace X B Doors" + } + } ], + "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 42, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 16, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 19, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 51, + "materialClass" : "2.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 286.65 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 56, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 68, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 54.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 10, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 64, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 82, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 52, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ] + } ], + "https://catenax.io/schema/VehicleBlueprint/1.0.0" : [ { + "parent" : { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "", + "values" : { + "BPN_OEM_C" : "BPNL00000003AZQP", + "BPN_OEM_A" : "BPNL00000003AYRE", + "BPN_OEM_B" : "BPNL00000003AVTH", + "BPN_IRS_TEST" : "BPNL00000003AWSS", + "BPN_N_TIER_A" : "BPNL00000003B0Q0", + "BATCH_SEALANT_1" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "BATCH_SEALANT_2" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "AUTHOR" : "T-Systems", + "BATCH_GLUE_2" : "urn:uuid:b181bb0b-801a-427f-8e06-ad2a1487b8af", + "BATCH_GLUE_1" : "urn:uuid:3ab2f41c-20b7-4498-904e-8b098c4f90ab", + "BPN_TRACEX_A_SITE_A" : "BPNS0000000008ZZ", + "BPN_TRACEX_B" : "BPNL00000003CNKC", + "BPN_DISMANTLER" : "BPNL00000003B6LU", + "BPN_TRACEX_A" : "BPNL00000003CML1", + "BPN_TRACEX_B_SITE_A" : "BPNS00000008BDFH", + "BPN_TIER_A" : "BPNL00000003B2OM", + "BPN_TIER_C" : "BPNL00000003CSGV", + "BPN_TIER_B" : "BPNL00000003B5MJ", + "BPN_SUB_TIER_B" : "BPNL00000003AXS3", + "BPN_SUB_TIER_A" : "BPNL00000003B3NX", + "BATCH_CATHODE_1" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "BATCH_CATHODE_2" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "BPN_SUB_TIER_C" : "BPNL00000000BJTL", + "CREATION_DATE" : "2023-07-24T12:42:50.804Z", + "BATCH_POLYAMID_1" : "urn:uuid:fb14bbbf-d14e-4d5a-8ac3-dd583adf6eb1", + "BATCH_POLYAMID_2" : "urn:uuid:94ce30ee-0c90-41cd-a21a-e72c5039295f" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "", + "condition" : "", + "instanceId" : "CONST", + "templateName" : "", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_combustion", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_combustion", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(33).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_combustion", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_combustion", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(33).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_combustion", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_combustion", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(33).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_combustion", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_combustion", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(33).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_combustion", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_combustion", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(33).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_combustion", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_combustion", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(33).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_combustion", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_combustion", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(33).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_combustion", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_combustion", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(33).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_combustion", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_combustion", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(33).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_combustion", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_combustion", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(33).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_electric", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_electric", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_electric", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_electric", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_electric", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_electric", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_electric", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_electric", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_electric", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_electric", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_electric", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_electric", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_electric", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_electric", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_electric", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_electric", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_electric", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_electric", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_electric", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_electric", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_hybrid", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_hybrid", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(34).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_hybrid", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_hybrid", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(34).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_hybrid", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_hybrid", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(34).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_hybrid", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_hybrid", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(34).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_hybrid", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_hybrid", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(34).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_hybrid", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_hybrid", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(34).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_hybrid", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_hybrid", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(34).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_hybrid", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_hybrid", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(34).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_hybrid", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_hybrid", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(34).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_hybrid", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_hybrid", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Differential", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Turbo", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Cat", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_FR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RL", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_RR", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Engine_Hood", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tailgate", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Fender_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Bumper_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Mirror_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Trailer_Coupling", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Dashboard", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Steering_Wheel", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Left", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Indicator_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_LED_Headlight", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Starter_Motor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Alternator", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_AC_Compressor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Taillight_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Front", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Axle_Rear", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Chassis", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Rims", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Tires", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_Transmission", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_ECU", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Part_HVB", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "!rand.StringEqual(TDG_TYPE, 'CASESTUDY')", + "code" : [ ], + "values" : { }, + "name" : "TC_CS1_DX", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(4).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(5).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(6).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(7).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(8).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(9).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(10).put('businessPartner', 'BPNL00000003AVTH');", "item.get('childItems').get(11).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(12).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(13).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(14).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(15).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(16).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(17).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(18).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(19).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(20).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(21).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(22).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(23).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(24).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(25).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(26).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(27).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(28).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(29).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(30).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(31).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(32).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(34).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(560)", + "length" : "!rand.getFloat(843)", + "width" : "!rand.getFloat(762)", + "weight" : "!rand.getFloat(180)", + "height" : "!rand.getFloat(711)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_engine", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_differential_gear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_turbocharger", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_catalysator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_left", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_front_right", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_Z_Door_Key", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_C" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_key", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_door_rear_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engine_hood", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tailgate", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_fender_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_bumper_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_exterior_mirror_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_trailer_coupling", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_dashboard", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_steering_wheel", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_left", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_indicator_right", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_led_headlight", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_starter_motor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_alternator", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ac_compressor", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_taillight_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_front", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_axle_part_rear", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_chassis", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_rims", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tires", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_transmission", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(380)", + "length" : "!rand.getFloat(810)", + "width" : "!rand.getFloat(590)", + "weight" : "!rand.getFloat(85)", + "height" : "!rand.getFloat(610)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_transmission", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_transmission", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "identification.localIdentifiers[0].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "identification.manufacturerId" : "!BPN_TIER_A" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "TransmissionPass", + "condition" : "", + "instanceId" : "", + "templateName" : "TransmissionPass", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.2014);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2341);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.1908);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ntier_product", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ntier_product", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "GL338", + "component[0].materialName" : "Glue", + "component[0].weight" : "0.2341", + "component[0].materialClass" : "6.2" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_ecu", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_ecu", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.3301);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 0.2001);", "item.get('childItems').get(2).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_glue", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_glue", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sensor", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', '0.1908');", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_N_TIER_A", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_engineering_plastics", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_engineering_plastics", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "0.1.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "ReturnRequest", + "condition" : "", + "instanceId" : "", + "templateName" : "rr", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.4.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MarketPlaceOffer", + "condition" : "", + "instanceId" : "", + "templateName" : "MarketPlaceOffer", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.4" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!vehicleItem.var('oem')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_module", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_hvb_module", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 0.11);", "item.get('childItems').get(0).get('quantity').put('measurementUnit', 'unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_SEALANT_1, BATCH_SEALANT_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_sealant", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].materialAbbreviation" : "SEL3321", + "component[0].materialName" : "Sealant", + "component[0].weight" : "0.11", + "component[0].materialClass" : "6.3" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_min", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_OEM_A" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_hvb_cell", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "3.0.1", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryPass", + "condition" : "", + "instanceId" : "", + "templateName" : "!rand.getAny('BatteryPass1','BatteryPass2','BatteryPass3','BatteryPass4','BatteryPass5')", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "catenaXId" : "!rand.getAny(BATCH_CATHODE_1, BATCH_CATHODE_2)", + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[0].value" : "!BPN_N_TIER_A" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_cathode", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_cathode", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.0", + "values" : { + "diameter" : "!rand.getFloat(32)", + "length" : "!rand.getFloat(142)", + "width" : "!rand.getFloat(26.5)", + "weight" : "!rand.getFloat(1.4688)", + "height" : "!rand.getFloat(61)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PhysicalDimension", + "condition" : "", + "instanceId" : "", + "templateName" : "pd_hvb_cell", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.0.1", + "values" : { + "currentStateOfHealth[0].currentStateOfHealthValue" : "105", + "currentStateOfHealth[1].currentStateOfHealthValue" : "95", + "performanceIndicator.electricCapacityMin" : "0.8", + "performanceIndicator.electricCapacityMax" : "0.88", + "currentStateOfHealth[1].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(31))", + "currentStateOfHealth[0].currentStateOfHealthTimestamp" : "!rand.formatDate(rand.getPastDate(10 * 365))", + "minimalStateOfHealth.minimalStateOfHealthValue" : "90.0", + "type" : "HVB" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "BatteryProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "bpd_hvb", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMC'+id } else {'TXA'+id}", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C,BPN_TRACEX_A);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_tracex_a_model_d", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 2, + "nodeType" : "CHILD", + "modelName" : "VehicleProductDescription", + "condition" : "", + "instanceId" : "", + "templateName" : "vpd_vehicle_tracex_a_model_d", + "children" : [ ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "CertificateOfDestruction", + "condition" : "", + "instanceId" : "", + "templateName" : "cod", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_OEMC_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_TRACEX_B_DF_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_OEM_A_CarBody", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_vehicle_oemc_engine", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 8);", "item.get('childItems').get(1).get('quantity').put('quantityNumber', 8);", "item.get('childItems').get(2).get('quantity').put('quantityNumber', 4);", "item.get('childItems').get(3).get('quantity').put('quantityNumber', 8);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B2OM');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003CML1');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 4, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_batch_piston_rod", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else if (vehicleItem.var('oem')==BPN_OEM_C) { 'OMC'+id } else { 'TXB'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C,BPN_TRACEX_B);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tracex_b_df_right", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI5S1_TRACEXA_DoorKey", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 4);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CML1');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else if (vehicleItem.var('oem')==BPN_OEM_C) { 'OMC'+id } else { 'TXA'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C,BPN_TRACEX_A);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 4, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_tracex_a_door_key", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 4);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 4, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_batch_key_fund", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.1", + "values" : { + "localIdentifiers[2].value" : "!var id = rand.getPattern('AAAAAAAAAAAAAA') ;if (vehicleItem.var('oem')==BPN_OEM_A) { 'OMA'+id } else if (vehicleItem.var('oem')==BPN_OEM_B) { 'OMB' +id} else { 'OMC'+id }", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!var val = rand.getAny(BPN_OEM_A, BPN_OEM_B, BPN_OEM_C);vehicleItem.var('oem', val);val", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('CC/-99')", + "localIdentifiers[3].value" : "$localIdentifiers[2].value", + "manufacturingInformation.date" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "SerialPart", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_car_body", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { + "component[0].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[1].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[3].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[8].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[2].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[9].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[7].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[4].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[5].recycledContent" : "!rand.getNumberBetween(0,90)", + "component[6].recycledContent" : "!rand.getNumberBetween(0,90)" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + }, { + "include" : [ ], + "code" : [ "vehicleItem.replaceAprChildren(item, subparents);", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 6);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CNKC');" ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsBuilt", + "condition" : "", + "instanceId" : "", + "templateName" : "SingleLevelBomAsBuilt", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.2", + "values" : { + "localIdentifiers[2].value" : "!rand.getPattern('/N/O/-999999999999999999999999')", + "localIdentifiers[1].value" : "$partTypeInformation.manufacturerPartId", + "partTypeInformation.customerPartId" : "$partTypeInformation.manufacturerPartId", + "localIdentifiers[0].value" : "!BPN_SUB_TIER_B", + "partTypeInformation.manufacturerPartId" : "!rand.getPattern('99999C9/-99')" + }, + "count" : 6, + "nodeType" : "PARENT", + "modelName" : "batch", + "condition" : "", + "instanceId" : "", + "templateName" : "spt_batch_doors", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : false, + "modelVersion" : "1.1.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "MaterialForRecycling", + "condition" : "", + "instanceId" : "", + "templateName" : "mfr_vehicle", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.0" + } ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, + "name" : "Catena-X Testdata for PI5S1", + "version" : "1.3.0-qcheck" + } ], + "oneup" : [ { + "catenaXId" : "urn:uuid:9cd763dc-a258-4e8e-bc32-200647016ad3", + "parents" : [ "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280" ] + }, { + "catenaXId" : "urn:uuid:3cf5524d-de2c-492d-ac51-a7c0e3d7a0b6", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "parents" : [ "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60" ] + }, { + "catenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb", + "parents" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, { + "catenaXId" : "urn:uuid:1eee08c5-ad4e-42bc-9cea-98a0cf3a8a8a", + "parents" : [ "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f" ] + }, { + "catenaXId" : "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f", + "parents" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, { + "catenaXId" : "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c", + "parents" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, { + "catenaXId" : "urn:uuid:4764aeff-9f7d-4a44-9a2b-1e01a11fb6ab", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155", + "parents" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:519d731d-c5af-4b3e-ba5c-8ee519b72381", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858", + "parents" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, { + "catenaXId" : "urn:uuid:aa11babe-ad64-451d-938a-1ce3cfcb3bf1", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc", + "parents" : [ "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71" ] + }, { + "catenaXId" : "urn:uuid:bae7c9de-1c79-497a-bd62-8875e5f68371", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92", + "parents" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, { + "catenaXId" : "urn:uuid:402a1282-877d-4450-b20d-1ac2b5d29824", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:277a5602-5ca2-4e21-801c-330836fdcf06", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:346ad14a-6789-4ed2-bc63-df1b61cf58df", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6", + "parents" : [ "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629" ] + }, { + "catenaXId" : "urn:uuid:727334c5-5b6f-444f-8204-f19796212538", + "parents" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, { + "catenaXId" : "urn:uuid:b7230e91-645e-49af-897f-9a8289061926", + "parents" : [ "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637" ] + }, { + "catenaXId" : "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40", + "parents" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, { + "catenaXId" : "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd", + "parents" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, { + "catenaXId" : "urn:uuid:fd7908b8-619a-44e3-a8ff-a1dd5176f681", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:2367aa96-84b0-4e44-9784-f361ee9c189b", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:c327bc16-cbc3-4338-a571-7d1583b935b8", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce", + "parents" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, { + "catenaXId" : "urn:uuid:6efaa21d-d2a9-433e-922b-cb73bda7be67", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "parents" : [ "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0" ] + }, { + "catenaXId" : "urn:uuid:115a987d-ed09-4107-a2b7-e41eebe5faa1", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9", + "parents" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:da89bb14-f11b-4bdd-9519-c7fb075e3952", + "parents" : [ "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab" ] + }, { + "catenaXId" : "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2", + "parents" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84", + "parents" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d", + "parents" : [ "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395" ] + }, { + "catenaXId" : "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f", + "parents" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4", + "parents" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, { + "catenaXId" : "urn:uuid:2f29abca-0e24-47e4-891d-86a4fe452424", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:72f5c8f6-2687-4ba0-a9d3-20eab0c44946", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:8712137e-06fd-4c17-b855-0690dcb8f9d6", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:9640d81d-01f9-4a3d-94fb-3a0204693076", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:14482a3d-57f8-4c86-8418-2ebab284c634", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:a83d7928-5d6f-421c-919b-7c65c9343c0b", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b", + "parents" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, { + "catenaXId" : "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6", + "parents" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:9fe39790-fa48-4c1e-80bd-72200c60b05f", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "parents" : [ "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291" ] + }, { + "catenaXId" : "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f", + "parents" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, { + "catenaXId" : "urn:uuid:43d4cbcb-2a07-4a3b-acd9-d9de7575ba41", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "parents" : [ "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d" ] + }, { + "catenaXId" : "urn:uuid:6c4e3396-4016-4664-b642-fa4e518c8bee", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3", + "parents" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, { + "catenaXId" : "urn:uuid:34aac0ea-f76d-4b42-9af1-43113b0c9c5c", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187", + "parents" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, { + "catenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "parents" : [ "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f" ] + }, { + "catenaXId" : "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695", + "parents" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, { + "catenaXId" : "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0", + "parents" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, { + "catenaXId" : "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad", + "parents" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, { + "catenaXId" : "urn:uuid:b6641421-9e65-4c15-a384-19938b320ae2", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:5f4e293c-3a94-47ea-8d25-ea055526940e", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355", + "parents" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21", + "parents" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, { + "catenaXId" : "urn:uuid:884c62c4-773f-407a-b1a6-b84cd75c3326", + "parents" : [ "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a" ] + }, { + "catenaXId" : "urn:uuid:49f022b4-8a24-4ce2-8f4b-b588b9854019", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:4b86ddec-ddb5-4927-a813-ca0c53f84981", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:f37cd36e-757f-4815-9346-4ebb37334429", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:be4c2c4a-cd5b-4e25-943f-63ba8b0722f8", + "parents" : [ "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac" ] + }, { + "catenaXId" : "urn:uuid:e71ae952-c811-48ff-994d-1ba6bff89d5f", + "parents" : [ "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d" ] + }, { + "catenaXId" : "urn:uuid:1bdc7eb8-affb-4e33-b158-5bb65c2873e8", + "parents" : [ "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658" ] + }, { + "catenaXId" : "urn:uuid:6260a6d1-edff-4809-9077-db3a0ebedf65", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761", + "parents" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, { + "catenaXId" : "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df", + "parents" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "parents" : [ "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0" ] + }, { + "catenaXId" : "urn:uuid:d15ae90b-725f-4bbe-b8d0-ff49a56f9b3e", + "parents" : [ "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4" ] + }, { + "catenaXId" : "urn:uuid:2a42c229-9eea-4db1-bef5-6c914fd4a4e2", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:a2e96ed2-8a2f-489d-8eaa-900d6279dcd0", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:d9d526f7-87a4-4440-af75-1541a8fdcbc5", + "parents" : [ "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc" ] + }, { + "catenaXId" : "urn:uuid:86d4696c-65a1-45ca-8f98-83b453b9607a", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7", + "parents" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, { + "catenaXId" : "urn:uuid:51f23ae0-f5af-4001-987f-ef71ab6c9349", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b", + "parents" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:b335610e-7b85-4a30-8f42-70cdfbda27ec", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57", + "parents" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, { + "catenaXId" : "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60", + "parents" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, { + "catenaXId" : "urn:uuid:3c723540-f1ea-42ff-8f2a-d0cbce069a33", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:93aab108-d421-420d-9f18-967f4ba5a55e", + "parents" : [ "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280" ] + }, { + "catenaXId" : "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c", + "parents" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, { + "catenaXId" : "urn:uuid:77d74d4b-81cc-40f6-bc15-09939b0132f3", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:c7eb1f42-c7f0-46a8-84d1-15433f3047dc", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:970133f5-f8e7-40de-a30f-03a51821d6af", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d", + "parents" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, { + "catenaXId" : "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6", + "parents" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, { + "catenaXId" : "urn:uuid:c8f0ea47-2774-4dd4-ac84-1abc35433250", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0", + "parents" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, { + "catenaXId" : "urn:uuid:92d438a7-0ee7-4e39-a878-6cafb9f2f050", + "parents" : [ "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036" ] + }, { + "catenaXId" : "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0", + "parents" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, { + "catenaXId" : "urn:uuid:68a321b4-4142-402e-8748-3a92dccfd498", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "parents" : [ "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f" ] + }, { + "catenaXId" : "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517", + "parents" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, { + "catenaXId" : "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb", + "parents" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, { + "catenaXId" : "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f", + "parents" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6", + "parents" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, { + "catenaXId" : "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2", + "parents" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, { + "catenaXId" : "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b", + "parents" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, { + "catenaXId" : "urn:uuid:5a19279c-9a4d-4831-835e-44f49aad1b5a", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:3d9d7b27-839e-48b5-9453-111c9281274e", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102", + "parents" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, { + "catenaXId" : "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25", + "parents" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:914b436b-c1c4-4ebd-b414-373525c53f9a", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5", + "parents" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, { + "catenaXId" : "urn:uuid:9ac53652-34b3-40fa-be9e-0e2b6c04e820", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6", + "parents" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, { + "catenaXId" : "urn:uuid:0dc30548-c507-4bd1-81cb-006d521b92f4", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5", + "parents" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, { + "catenaXId" : "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:b4e69125-e78f-4417-9151-bd718e47b8ab", + "parents" : [ "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a" ] + }, { + "catenaXId" : "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6", + "parents" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, { + "catenaXId" : "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b", + "parents" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, { + "catenaXId" : "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010", + "parents" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, { + "catenaXId" : "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a", + "parents" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, { + "catenaXId" : "urn:uuid:39413240-eecd-4379-8c0e-a5d074178b5d", + "parents" : [ "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9" ] + }, { + "catenaXId" : "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696", + "parents" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, { + "catenaXId" : "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48", + "parents" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, { + "catenaXId" : "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a", + "parents" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:213c6064-127a-46c4-905d-37a82bc367a8", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:197bc376-ac0c-405d-af90-9380f4af310e", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:b63b2704-ff2c-4842-955d-2db8531cb846", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b", + "parents" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, { + "catenaXId" : "urn:uuid:bca320b0-0596-4947-ac82-cdbb075ecff0", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65", + "parents" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, { + "catenaXId" : "urn:uuid:7340a8ec-71b5-4eed-a0aa-2caac341bfe1", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c", + "parents" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, { + "catenaXId" : "urn:uuid:f658ac98-3bc4-4129-8afd-39439532ed9e", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:6a3b9195-a61f-4846-a882-15268df819af", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:a96d8269-80fa-4ea1-9a25-63821e98dd6c", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b", + "parents" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, { + "catenaXId" : "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e", + "parents" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, { + "catenaXId" : "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58", + "parents" : [ "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb" ] + }, { + "catenaXId" : "urn:uuid:658d1e9b-3ba4-416b-8e9f-340c9c10d0f4", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:381918d4-bf1c-40af-b386-509e16a858b1", + "parents" : [ "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4" ] + }, { + "catenaXId" : "urn:uuid:028cf02c-0687-4a87-aa87-c38c74af04ea", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:c1fda60b-fde2-46c9-80a8-c1a8b5f22eff", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f", + "parents" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, { + "catenaXId" : "urn:uuid:89c0070b-335e-4ed0-b613-c2cf27308621", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:4ced8f3d-d7d2-4904-9124-58d23bab9261", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29", + "parents" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, { + "catenaXId" : "urn:uuid:bcdac515-ca3f-4c41-b578-63d9afac1120", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:a1bed12c-24aa-405d-b513-e27d7b823329", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:7c483880-aa69-4bbf-811e-f96ae0f1e3ea", + "parents" : [ "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e" ] + }, { + "catenaXId" : "urn:uuid:14baee0d-7daf-40b9-a99c-7bd2ee06c98d", + "parents" : [ "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff" ] + }, { + "catenaXId" : "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade", + "parents" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, { + "catenaXId" : "urn:uuid:4435f4f5-149a-4868-a044-76dce092d4ff", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d", + "parents" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, { + "catenaXId" : "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725", + "parents" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, { + "catenaXId" : "urn:uuid:427725ea-b017-447e-9120-159db70c5cde", + "parents" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, { + "catenaXId" : "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735", + "parents" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, { + "catenaXId" : "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357", + "parents" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, { + "catenaXId" : "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6", + "parents" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, { + "catenaXId" : "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454", + "parents" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, { + "catenaXId" : "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d", + "parents" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, { + "catenaXId" : "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "parents" : [ "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f" ] + }, { + "catenaXId" : "urn:uuid:258f44c9-1949-4325-a7e2-20b56b253afc", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:ebfaa0b7-0030-489c-8558-c5ebc3e64333", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c", + "parents" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, { + "catenaXId" : "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a", + "parents" : [ "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69" ] + }, { + "catenaXId" : "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46", + "parents" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, { + "catenaXId" : "urn:uuid:346b84a6-6d68-4941-85b2-3941bf381e9b", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:7e3ce380-be74-4159-912a-462a0eb425a1", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967", + "parents" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, { + "catenaXId" : "urn:uuid:357f45ab-37ff-4baf-83ef-ac27a9954f1f", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:e4875d28-828a-4dad-9482-97a0dd08c921", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031", + "parents" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, { + "catenaXId" : "urn:uuid:c2b60249-ad37-4a8e-9787-6edbbc8f814c", + "parents" : [ "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034" ] + }, { + "catenaXId" : "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4", + "parents" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, { + "catenaXId" : "urn:uuid:26ece0c9-e57e-4238-80ae-c2d57292ae19", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:7b15e05e-e290-4be3-af99-defd93a457ad", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af", + "parents" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, { + "catenaXId" : "urn:uuid:69df0386-051a-433d-a074-2848039ba421", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:f37662f0-9229-4932-9e90-a98167fcf63e", + "parents" : [ "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140" ] + }, { + "catenaXId" : "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2", + "parents" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, { + "catenaXId" : "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e", + "parents" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, { + "catenaXId" : "urn:uuid:5005827a-b853-42b2-bb2d-70d1b82f5861", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:d236fe63-5c46-49ff-aa4d-4ce200239936", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "parents" : [ "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1" ] + }, { + "catenaXId" : "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc", + "parents" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, { + "catenaXId" : "urn:uuid:fa44f33e-17f8-426f-a050-4f64d343e54d", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:8229ad3b-ef8a-4d0d-96de-55e2f10c6df3", + "parents" : [ "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69" ] + }, { + "catenaXId" : "urn:uuid:9ad4c28f-71c5-4ab0-9ade-9c020b8208c2", + "parents" : [ "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237" ] + }, { + "catenaXId" : "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34", + "parents" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:40848641-e38f-4958-b0b5-bc6ca13a35f0", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:c8b0f0f4-ac94-47c2-8c34-c4e81995ceaf", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57", + "parents" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980", + "parents" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, { + "catenaXId" : "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c", + "parents" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950", + "parents" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, { + "catenaXId" : "urn:uuid:d0b5117d-1c02-4be8-9f4e-689f5e80e790", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:0275bc4a-a8ec-4be6-b50b-4b5f6d6e3c5a", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:d6fca6e1-30ef-48e6-81bb-5a9034712ef8", + "parents" : [ "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0" ] + }, { + "catenaXId" : "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30", + "parents" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, { + "catenaXId" : "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa", + "parents" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, { + "catenaXId" : "urn:uuid:8fe4d000-a3c7-4aa9-9a71-f4170a0b0bbb", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:c56c8495-c663-491a-b19e-803cb75c5b06", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51", + "parents" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:ca5c4757-312b-479f-ad25-a0553d3e14de", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9", + "parents" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, { + "catenaXId" : "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9", + "parents" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, { + "catenaXId" : "urn:uuid:6ae57614-dc3b-4b6e-b1a2-24601849dffd", + "parents" : [ "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09" ] + }, { + "catenaXId" : "urn:uuid:e11df9f1-bfb4-4006-920d-1b4e95cd6d66", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd", + "parents" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, { + "catenaXId" : "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6", + "parents" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, { + "catenaXId" : "urn:uuid:8bfa9678-bb59-446a-96a2-80901f93ec42", + "parents" : [ "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d" ] + }, { + "catenaXId" : "urn:uuid:6ae855c1-a9a3-48d5-b8f9-0ba39751ce52", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:512bff1f-36db-4fff-b2ff-ff1d3d49f0a7", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d", + "parents" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, { + "catenaXId" : "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6", + "parents" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1", + "parents" : [ "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036" ] + }, { + "catenaXId" : "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, { + "catenaXId" : "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71", + "parents" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80", + "parents" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, { + "catenaXId" : "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791", + "parents" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, { + "catenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "parents" : [ "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d" ] + }, { + "catenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "parents" : [ "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1" ] + }, { + "catenaXId" : "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c", + "parents" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, { + "catenaXId" : "urn:uuid:b4a6b10a-3655-47f0-a62e-368c4247e467", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836", + "parents" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, { + "catenaXId" : "urn:uuid:aa70e55b-eef2-4aa5-b9d8-859715349645", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:849284b0-4259-4ad3-bc58-88c2b15b6cde", + "parents" : [ "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98" ] + }, { + "catenaXId" : "urn:uuid:57db2076-0208-45d5-9aed-532ca5548bcc", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:261f4b4b-4b37-4b55-be17-738a37208dc5", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181", + "parents" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, { + "catenaXId" : "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba", + "parents" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, { + "catenaXId" : "urn:uuid:f145cf2e-7d3a-4362-a911-133ed0052601", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:1d19bd1d-25da-4406-8143-c43c3633b96b", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5", + "parents" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf", + "parents" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, { + "catenaXId" : "urn:uuid:741682ea-f384-4ad3-ab3e-0d6d9b1c03d2", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:5be88a30-5896-43b4-95c9-346cb932707d", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914", + "parents" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, { + "catenaXId" : "urn:uuid:607ad661-65fd-4535-b100-62119f605a17", + "parents" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, { + "catenaXId" : "urn:uuid:7625422f-9504-4525-96c4-902cf81613e3", + "parents" : [ "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020" ] + }, { + "catenaXId" : "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57", + "parents" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403", + "parents" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, { + "catenaXId" : "urn:uuid:929cbc30-bef7-4428-9ea3-d41335ac66ac", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c", + "parents" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, { + "catenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "parents" : [ "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c" ] + }, { + "catenaXId" : "urn:uuid:3bb1ab5c-4735-456c-b082-ff32fcce53c0", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb", + "parents" : [ "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679" ] + }, { + "catenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "parents" : [ "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d" ] + }, { + "catenaXId" : "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc", + "parents" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, { + "catenaXId" : "urn:uuid:d663b5e8-0594-4b2e-85df-6016be37f216", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:63e7a6fd-182e-4627-999f-693b0af57706", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635", + "parents" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, { + "catenaXId" : "urn:uuid:c6e2ac85-4482-40fb-b96b-b19ee8ce6fb0", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a", + "parents" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:4631a586-b0fb-4af1-94b0-b333cc8e4748", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c", + "parents" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, { + "catenaXId" : "urn:uuid:af0050e5-7268-4ccf-9ae0-20468d372810", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:9e25cc3b-4fad-459f-83c4-f08f91657811", + "parents" : [ "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2" ] + }, { + "catenaXId" : "urn:uuid:52a568c3-8d0c-4b67-b197-7e9e9a42b4e8", + "parents" : [ "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea" ] + }, { + "catenaXId" : "urn:uuid:1e564b09-9353-4726-935b-8f388825f710", + "parents" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, { + "catenaXId" : "urn:uuid:dd9c2b24-22e0-4cfd-ba14-d33e528be3f3", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f", + "parents" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, { + "catenaXId" : "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7", + "parents" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, { + "catenaXId" : "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0", + "parents" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013", + "parents" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, { + "catenaXId" : "urn:uuid:d46ad917-150d-4e12-96cc-1dd1a6bc004b", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c", + "parents" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:f4c26c34-47f8-498d-9565-2439c79bf287", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:61e08f18-48bb-479d-9514-c7bea8cecf42", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:f0729a64-5425-4e55-86e7-0d070bbf1377", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9", + "parents" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, { + "catenaXId" : "urn:uuid:986d7a11-a852-4aa0-8624-d0b83f8a6eca", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b", + "parents" : [ "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202" ] + }, { + "catenaXId" : "urn:uuid:befe57b7-c357-41b4-beb0-add888e6f8c6", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23", + "parents" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925", + "parents" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, { + "catenaXId" : "urn:uuid:c908e6db-2895-43b8-872d-96632dae7406", + "parents" : [ "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88" ] + }, { + "catenaXId" : "urn:uuid:479b7da6-3529-4f02-81dc-826c145f5afa", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886", + "parents" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, { + "catenaXId" : "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49", + "parents" : [ "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75" ] + }, { + "catenaXId" : "urn:uuid:c0b8628f-a67b-4437-ba96-e2db80311f8c", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:f665267c-0a61-4377-b6ad-b30d5478e924", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553", + "parents" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, { + "catenaXId" : "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb", + "parents" : [ "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431" ] + }, { + "catenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "parents" : [ "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1" ] + }, { + "catenaXId" : "urn:uuid:7738d4a7-0b76-4502-b009-93655f46d44e", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4", + "parents" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, { + "catenaXId" : "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05", + "parents" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, { + "catenaXId" : "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5", + "parents" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "parents" : [ "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa" ] + }, { + "catenaXId" : "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f", + "parents" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575", + "parents" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, { + "catenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "parents" : [ "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d" ] + }, { + "catenaXId" : "urn:uuid:8ec907cd-e38e-4491-af52-5eacccdfb6fd", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:68ecfa10-6024-4863-af24-0008679113aa", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:5c6ecb23-8ebe-48cb-8f0f-c643253ae0a0", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd", + "parents" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, { + "catenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:abce35f9-22c7-4a3b-b897-6f866a8039b7", + "parents" : [ "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde" ] + }, { + "catenaXId" : "urn:uuid:f7f083b3-b920-44d8-835c-afdf315e9be7", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd", + "parents" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, { + "catenaXId" : "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f", + "parents" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, { + "catenaXId" : "urn:uuid:46e3bc1b-e158-4098-9eb7-c891f73352db", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377", + "parents" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, { + "catenaXId" : "urn:uuid:e0e9c31b-9117-498c-bcd9-365959dcb908", + "parents" : [ "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e" ] + }, { + "catenaXId" : "urn:uuid:443fdeee-3d6c-4bc8-81f1-007b1c5aba03", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406", + "parents" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, { + "catenaXId" : "urn:uuid:99838ebb-ef4b-4c46-92b7-0c49da1add4e", + "parents" : [ "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2" ] + }, { + "catenaXId" : "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817", + "parents" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, { + "catenaXId" : "urn:uuid:b7e9f1c5-8aac-4032-9abf-f315b9d1463b", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:8f38a4e8-6459-4d47-a620-f23440dabca7", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", + "parents" : [ "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b" ] + }, { + "catenaXId" : "urn:uuid:20b8a583-9218-4771-8b5f-bc1bce36e819", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4", + "parents" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, { + "catenaXId" : "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d", + "parents" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, { + "catenaXId" : "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8", + "parents" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, { + "catenaXId" : "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b", + "parents" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, { + "catenaXId" : "urn:uuid:47b5f5ed-1bf6-46ba-899e-c19f7f62e682", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "parents" : [ "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7" ] + }, { + "catenaXId" : "urn:uuid:e70ea4fe-79e2-476d-829f-56df4c091e87", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4", + "parents" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, { + "catenaXId" : "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, { + "catenaXId" : "urn:uuid:87c77597-8936-426d-bee8-56bd55b7b9aa", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde", + "parents" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, { + "catenaXId" : "urn:uuid:d2438e43-1a52-4ae3-9c9c-47cf6636e206", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:a71f34fe-f747-4be6-86d9-2ee1289c4be8", + "parents" : [ "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53" ] + }, { + "catenaXId" : "urn:uuid:921ea907-cfe1-4a79-a392-f8b19c1e19ac", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b", + "parents" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939", + "parents" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, { + "catenaXId" : "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387", + "parents" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, { + "catenaXId" : "urn:uuid:472b88a6-a6e6-42f4-96d1-af5ea480e429", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "parents" : [ "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629" ] + }, { + "catenaXId" : "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:dafb9c98-c94d-4957-90bb-ef9aa19b42ab", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404", + "parents" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, { + "catenaXId" : "urn:uuid:c1971b88-b4fd-42e9-9f2f-1d4f87d90210", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:3bc2e32a-2acc-4f9f-a2a8-7f82a27ea86e", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "parents" : [ "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361" ] + }, { + "catenaXId" : "urn:uuid:56ad3dde-6206-4c98-a404-93ed709016f0", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:eaed6ab3-da02-40b6-928d-5fec822c2a15", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88", + "parents" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, { + "catenaXId" : "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae", + "parents" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, { + "catenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "parents" : [ "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0" ] + }, { + "catenaXId" : "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf", + "parents" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, { + "catenaXId" : "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10", + "parents" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, { + "catenaXId" : "urn:uuid:4c74986d-bb70-4e99-ac3e-ef6b6fdfa265", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929", + "parents" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5", + "parents" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab", + "parents" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17", + "parents" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, { + "catenaXId" : "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8", + "parents" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, { + "catenaXId" : "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf", + "parents" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, { + "catenaXId" : "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c", + "parents" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef", + "parents" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, { + "catenaXId" : "urn:uuid:4012f317-594e-418d-80ef-4bb09f8bc174", + "parents" : [ "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf" ] + }, { + "catenaXId" : "urn:uuid:f0123ae3-6bc7-4650-926b-0aeb5ba8136e", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:696fa8af-52b3-4e67-918f-660fd93d8d26", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f", + "parents" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, { + "catenaXId" : "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f", + "parents" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, { + "catenaXId" : "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1", + "parents" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, { + "catenaXId" : "urn:uuid:27068f44-96e6-4532-8945-816c22b106c9", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:a2f52182-a9eb-414d-a3ab-35e9724fc75b", + "parents" : [ "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9" ] + }, { + "catenaXId" : "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61", + "parents" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, { + "catenaXId" : "urn:uuid:75b8cf5b-f76a-4c67-90c0-90f913f4751d", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:7c548fd4-6428-42e5-88cb-2088bccf5c84", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:269be1da-57a1-4ea3-a53e-5f584d07606c", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4", + "parents" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, { + "catenaXId" : "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4", + "parents" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, { + "catenaXId" : "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b", + "parents" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, { + "catenaXId" : "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7", + "parents" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, { + "catenaXId" : "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2", + "parents" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, { + "catenaXId" : "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac", + "parents" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, { + "catenaXId" : "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280", + "parents" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, { + "catenaXId" : "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157", + "parents" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, { + "catenaXId" : "urn:uuid:4def8315-96e0-4586-9257-debaedff2142", + "parents" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, { + "catenaXId" : "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842", + "parents" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, { + "catenaXId" : "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc", + "parents" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, { + "catenaXId" : "urn:uuid:c847fb7a-4c76-4aa0-9170-f422ec3c4dc3", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81", + "parents" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, { + "catenaXId" : "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12", + "parents" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, { + "catenaXId" : "urn:uuid:47f20f1b-689f-4bd7-bfbb-818d6c98bdf8", + "parents" : [ "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a" ] + }, { + "catenaXId" : "urn:uuid:c18a36e1-8edd-4895-b24c-4a3fd864eb3a", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df", + "parents" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, { + "catenaXId" : "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b", + "parents" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, { + "catenaXId" : "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4", + "parents" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, { + "catenaXId" : "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b", + "parents" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:4154e218-adf0-4a1a-954a-61607659ed91", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa", + "parents" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, { + "catenaXId" : "urn:uuid:a2c5b932-9670-4f5f-b0e5-73fc9f700819", + "parents" : [ "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0" ] + }, { + "catenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "parents" : [ "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a" ] + }, { + "catenaXId" : "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e", + "parents" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, { + "catenaXId" : "urn:uuid:6f337645-69ce-460b-9234-133d875f50d8", + "parents" : [ "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce" ] + }, { + "catenaXId" : "urn:uuid:49279f9e-e262-4825-99de-b3e86140b9eb", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:e6a9c810-734e-4c73-90dd-66c195b79309", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:0a6cfd67-37dd-4306-9883-946e2a685446", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b", + "parents" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, { + "catenaXId" : "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80", + "parents" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, { + "catenaXId" : "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25", + "parents" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, { + "catenaXId" : "urn:uuid:93b3cb65-db89-4b73-bc70-db79307e8d0e", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:4d1fae8a-173a-40bb-ade9-642f43771477", + "parents" : [ "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b" ] + }, { + "catenaXId" : "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071", + "parents" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, { + "catenaXId" : "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d", + "parents" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, { + "catenaXId" : "urn:uuid:54a952ce-4b3d-48d5-ba55-8c3a4595f476", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525", + "parents" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:6789d12f-44fb-4616-bda4-343499e3aee6", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54", + "parents" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:736ca592-a0b0-4394-b538-f251a4224125", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea", + "parents" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, { + "catenaXId" : "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683", + "parents" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, { + "catenaXId" : "urn:uuid:3b7a1d6e-1eeb-4007-9a20-36e973996c10", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:5a66c091-5082-4047-b775-3d712a52c632", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:bc0803dc-8f3b-4904-9fef-8f0215156f96", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:ade56700-8c33-42eb-9253-038666690dd0", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af", + "parents" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, { + "catenaXId" : "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9", + "parents" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, { + "catenaXId" : "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161", + "parents" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:561b0741-6b41-42d3-95ee-b2f0d0563a26", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302", + "parents" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39", + "parents" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, { + "catenaXId" : "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099", + "parents" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, { + "catenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "parents" : [ "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c" ] + }, { + "catenaXId" : "urn:uuid:9eedcb70-49b8-4a0a-bda2-ffdb4c73e538", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:66980e76-b79b-4fcf-9111-5b56261d42bb", + "parents" : [ "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7" ] + }, { + "catenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "parents" : [ "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c" ] + }, { + "catenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222", + "parents" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, { + "catenaXId" : "urn:uuid:8d8f640e-d50a-4275-be7e-c107465a4082", + "parents" : [ "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380" ] + }, { + "catenaXId" : "urn:uuid:3342259f-1fe2-413d-9c5d-62f272915612", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:0096184b-a46a-42cf-9a8a-bef41ff6704e", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013", + "parents" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, { + "catenaXId" : "urn:uuid:88d03b0d-bbff-48ce-913e-e425d29ed6ed", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:8bb75f0b-1a60-4e69-9b39-c859f6205782", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e", + "parents" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, { + "catenaXId" : "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5", + "parents" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, { + "catenaXId" : "urn:uuid:209fa434-08c6-4dc4-8671-cc94f1b50e3f", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", + "parents" : [ "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b" ] + }, { + "catenaXId" : "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb", + "parents" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, { + "catenaXId" : "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c", + "parents" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, { + "catenaXId" : "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:ef14a302-30db-48f2-9587-8da45b44bbaf", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f", + "parents" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, { + "catenaXId" : "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50", + "parents" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, { + "catenaXId" : "urn:uuid:4e21ffa2-e6cc-42bc-b863-fb94d6f3b87b", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:263e8d09-299d-48cd-9a83-ef3241fe8db3", + "parents" : [ "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71" ] + }, { + "catenaXId" : "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802", + "parents" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, { + "catenaXId" : "urn:uuid:fca4d2b3-69d5-487d-8eff-cec7402382c8", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa", + "parents" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, { + "catenaXId" : "urn:uuid:f22146d8-bd23-4837-ac54-3c36e8de88fa", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:90f980af-83ab-4731-bcb2-d1283db430fa", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:1bcd563f-cce1-4805-9b41-138f72c14a7d", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:f79d171c-b8a4-443e-aa5e-44b8c4863ff0", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:b756238d-0f74-48c1-987c-fec796f43b4b", + "parents" : [ "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8" ] + }, { + "catenaXId" : "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3", + "parents" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, { + "catenaXId" : "urn:uuid:6bfaa801-4ade-4d5b-9be6-659f7ece61ee", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:4079114c-10d4-42dc-8de5-7637698c2ad8", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:2942084b-8a2a-4354-b5db-c91546105a01", + "parents" : [ "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e" ] + }, { + "catenaXId" : "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27", + "parents" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, { + "catenaXId" : "urn:uuid:bcd3db07-55bd-4da1-a5f5-d18aa43df777", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:c481c5f4-9964-4719-b593-b1c4b074c2b0", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b", + "parents" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:4b31fe2f-6d7c-4d13-834d-d4e45af8b2b1", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:ba7728a1-dea2-4c3e-99a6-1ad23a14b6b8", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:21879509-3454-4d59-8ec3-e5690f0337e7", + "parents" : [ "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80" ] + }, { + "catenaXId" : "urn:uuid:b680a188-d241-4b18-9c0e-b9977568711e", + "parents" : [ "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1" ] + }, { + "catenaXId" : "urn:uuid:6ea156a2-e0fd-4922-84f4-02f6b3ba1552", + "parents" : [ "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd" ] + }, { + "catenaXId" : "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503", + "parents" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71", + "parents" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, { + "catenaXId" : "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df", + "parents" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, { + "catenaXId" : "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302", + "parents" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, { + "catenaXId" : "urn:uuid:702f242d-0697-4f83-bdfb-e598b36ac10e", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61", + "parents" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, { + "catenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "parents" : [ "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629" ] + }, { + "catenaXId" : "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5", + "parents" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, { + "catenaXId" : "urn:uuid:772eace6-5589-4b52-a557-17384edeccde", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:6ee9122d-7a01-4ae8-8a4f-c22ba9ccb3b2", + "parents" : [ "urn:uuid:5301c872-3267-4319-be52-7a537c25f183" ] + }, { + "catenaXId" : "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6", + "parents" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, { + "catenaXId" : "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6", + "parents" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, { + "catenaXId" : "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe", + "parents" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, { + "catenaXId" : "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90", + "parents" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:28312ba3-bad5-40aa-af75-c53318d1e446", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:00c8de5a-b6bd-4061-88c1-2484ea3d3090", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:4e143b59-f638-437d-962d-4bc32ac01ac5", + "parents" : [ "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c" ] + }, { + "catenaXId" : "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70", + "parents" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, { + "catenaXId" : "urn:uuid:614a3051-8769-44a0-b255-cbde33923604", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "parents" : [ "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa" ] + }, { + "catenaXId" : "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff", + "parents" : [ "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78" ] + }, { + "catenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:029e6770-4e88-48f1-8efd-2e6d69e79b0b", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5", + "parents" : [ "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d" ] + }, { + "catenaXId" : "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d", + "parents" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:abc6d243-c9d0-48a1-8dff-b01b85ded57c", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7", + "parents" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:88a2b1a1-f1ef-47c7-a63b-0353313f827c", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:a185bbfd-f114-4b8c-a021-ecc820ffbc8c", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202", + "parents" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, { + "catenaXId" : "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823", + "parents" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, { + "catenaXId" : "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0", + "parents" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, { + "catenaXId" : "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2", + "parents" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, { + "catenaXId" : "urn:uuid:a0a3f1ea-7e69-48ae-a546-b822537b8046", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "parents" : [ "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d" ] + }, { + "catenaXId" : "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066", + "parents" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, { + "catenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "parents" : [ "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a" ] + }, { + "catenaXId" : "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, { + "catenaXId" : "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c", + "parents" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, { + "catenaXId" : "urn:uuid:7f479070-492b-4d38-b837-da5915f134ee", + "parents" : [ "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623" ] + }, { + "catenaXId" : "urn:uuid:a3f0fc7c-0660-411a-8a80-db2365af2fd3", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:664e07d1-b48a-49d8-bedd-4269234be8a3", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:ae0c5b2b-ccf0-44da-a5a9-b6fb6ebb68fb", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:1e291e40-be91-4ee0-b55b-99b0e2bc5e63", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e", + "parents" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, { + "catenaXId" : "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:6dfba136-c5ae-4e94-965f-1c32c25895f5", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372", + "parents" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, { + "catenaXId" : "urn:uuid:01365915-d0b0-4af6-bdfc-fdaf8f41b70a", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:f186827c-67af-423c-81c5-a5c6942db11d", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9", + "parents" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, { + "catenaXId" : "urn:uuid:49f3433b-5b0f-45a2-a18d-c18dd274d24b", + "parents" : [ "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc" ] + }, { + "catenaXId" : "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:a18fa655-9fa8-43cd-99f7-d1111a95c5bf", + "parents" : [ "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094" ] + }, { + "catenaXId" : "urn:uuid:322bb7e9-e9de-4de6-8e4c-22446dfc5e1b", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:ac945b98-2365-4fcf-8f33-476092472d4f", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:e0efabc8-3d20-4c31-a98a-c72bf4a717a3", + "parents" : [ "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85" ] + }, { + "catenaXId" : "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0", + "parents" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, { + "catenaXId" : "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f", + "parents" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:08d040d4-54b9-40b6-8096-a1e738141249", + "parents" : [ "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395" ] + }, { + "catenaXId" : "urn:uuid:143d4048-6f5e-409d-931b-e6e2c530e261", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0", + "parents" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, { + "catenaXId" : "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9", + "parents" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, { + "catenaXId" : "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f", + "parents" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, { + "catenaXId" : "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce", + "parents" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, { + "catenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "parents" : [ "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9" ] + }, { + "catenaXId" : "urn:uuid:6e687f1d-71ea-43b2-8f80-7121c0b3353f", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:32bc8a04-f995-415c-9812-716f768aca30", + "parents" : [ "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85" ] + }, { + "catenaXId" : "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9", + "parents" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99", + "parents" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, { + "catenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "parents" : [ "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291" ] + }, { + "catenaXId" : "urn:uuid:c0b2c683-081e-424d-a050-a25a358a2b2b", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9", + "parents" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, { + "catenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "parents" : [ "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0" ] + }, { + "catenaXId" : "urn:uuid:57dee052-b114-4003-a9c4-ebd0e197641f", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955", + "parents" : [ "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23" ] + }, { + "catenaXId" : "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d", + "parents" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, { + "catenaXId" : "urn:uuid:c6c3058d-e297-4988-8196-7b8b8bb086fe", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f", + "parents" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, { + "catenaXId" : "urn:uuid:bac0e15a-6e07-428e-877d-41a994134d4b", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:91c5e0b2-28cb-40e3-9e02-2f7c0e3d63b2", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb", + "parents" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, { + "catenaXId" : "urn:uuid:75ee7c7e-70d0-4c99-9a82-2df875e938f6", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b", + "parents" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, { + "catenaXId" : "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91", + "parents" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, { + "catenaXId" : "urn:uuid:9132682c-304a-444e-bc3d-0771722e0d7c", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:073ab468-b915-449a-a461-de7ed1d16335", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24", + "parents" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, { + "catenaXId" : "urn:uuid:a7f6920e-324b-45c5-90a0-33545573318e", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410", + "parents" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, { + "catenaXId" : "urn:uuid:48d3575a-ec24-4a1f-bfe7-300480f895cd", + "parents" : [ "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860" ] + }, { + "catenaXId" : "urn:uuid:17c56482-4f8c-4afb-a56e-58f3b11cf38e", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:26f0a614-fb20-410e-b698-03f32d7994a2", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2", + "parents" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, { + "catenaXId" : "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e", + "parents" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "parents" : [ "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708" ] + }, { + "catenaXId" : "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572", + "parents" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, { + "catenaXId" : "urn:uuid:8ad1fe78-5285-46a8-9afb-0807c1be7981", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688", + "parents" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, { + "catenaXId" : "urn:uuid:97d40e77-d5a8-4c7b-a5db-2488c1c4e2d8", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:73fd5254-6c3e-4893-9d0d-aaecaa82d3f2", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c", + "parents" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, { + "catenaXId" : "urn:uuid:20c5ccff-5f1c-4cdb-8727-16efd47c1414", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1", + "parents" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, { + "catenaXId" : "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe", + "parents" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, { + "catenaXId" : "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846", + "parents" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, { + "catenaXId" : "urn:uuid:f7113e6d-c12d-49ad-aa36-cc2678d7df3e", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade", + "parents" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, { + "catenaXId" : "urn:uuid:a4bb030e-ae6d-4707-b4e7-b4a7a1e6b6c8", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4", + "parents" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, { + "catenaXId" : "urn:uuid:e0bad19c-5bfc-46f5-9f46-d26c0f6eea6a", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:06b1358f-a90f-4ac0-9ff7-377acaae3f34", + "parents" : [ "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd" ] + }, { + "catenaXId" : "urn:uuid:040526f6-0df2-4673-b748-f9fc51c970c1", + "parents" : [ "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4" ] + }, { + "catenaXId" : "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b", + "parents" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, { + "catenaXId" : "urn:uuid:a1e6f72d-485d-46d5-ad10-e73e8a303a73", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:28264837-efc0-4b4a-ab20-882910a2e174", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3", + "parents" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, { + "catenaXId" : "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771", + "parents" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, { + "catenaXId" : "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1", + "parents" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, { + "catenaXId" : "urn:uuid:25e927b1-4c28-44fc-8975-f21ce50037c4", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71", + "parents" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, { + "catenaXId" : "urn:uuid:3b6b09f4-5f0c-4c7e-8295-e4d2f1564698", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef", + "parents" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, { + "catenaXId" : "urn:uuid:33a0b6f6-6aee-4c84-a941-8facfca00676", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "parents" : [ "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c" ] + }, { + "catenaXId" : "urn:uuid:3b9e91f5-a7c2-4878-bf05-1ca82b9ac925", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967", + "parents" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, { + "catenaXId" : "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3", + "parents" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, { + "catenaXId" : "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42", + "parents" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8", + "parents" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, { + "catenaXId" : "urn:uuid:1938c366-ff17-4665-ad2b-d14598b8c897", + "parents" : [ "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38" ] + }, { + "catenaXId" : "urn:uuid:e74641a6-fa74-497a-8819-70fc58a38122", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:46a8c001-1dc4-42a4-9468-a2cbf6822d6c", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4", + "parents" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, { + "catenaXId" : "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb", + "parents" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, { + "catenaXId" : "urn:uuid:ea075d7a-e871-48c9-a448-1d4884b0e231", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927", + "parents" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, { + "catenaXId" : "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e", + "parents" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba", + "parents" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, { + "catenaXId" : "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e", + "parents" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, { + "catenaXId" : "urn:uuid:18485718-4e23-451e-ae02-ee412f647061", + "parents" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, { + "catenaXId" : "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:dbc69f18-2ec1-43a9-b2df-02a943921466", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6", + "parents" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, { + "catenaXId" : "urn:uuid:a8e35f99-b9fd-4f1b-82b0-8dc7706cfb43", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614", + "parents" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8", + "parents" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc", + "parents" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, { + "catenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "parents" : [ "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0" ] + }, { + "catenaXId" : "urn:uuid:5dc976bd-9509-4546-ba39-e40c3ccf1270", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06", + "parents" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, { + "catenaXId" : "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e", + "parents" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, { + "catenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "parents" : [ "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629" ] + }, { + "catenaXId" : "urn:uuid:14eb3e83-f19d-4b43-9434-9808fbd0df86", + "parents" : [ "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd" ] + }, { + "catenaXId" : "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750", + "parents" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:46d192e6-e742-41b3-a469-308db2d964e8", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:60bef7ae-f873-40e4-a824-1d0b66a1e19f", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75", + "parents" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, { + "catenaXId" : "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d", + "parents" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, { + "catenaXId" : "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2", + "parents" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, { + "catenaXId" : "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88", + "parents" : [ "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a" ] + }, { + "catenaXId" : "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a", + "parents" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, { + "catenaXId" : "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb", + "parents" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, { + "catenaXId" : "urn:uuid:7ecebbd1-9cec-4913-94f3-adc7641b669c", + "parents" : [ "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250" ] + }, { + "catenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "parents" : [ "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60" ] + }, { + "catenaXId" : "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1", + "parents" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, { + "catenaXId" : "urn:uuid:167f509a-1bcd-4baa-843a-ccc478fee49f", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c", + "parents" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, { + "catenaXId" : "urn:uuid:51a3ac5b-1ac1-46cb-a969-7bae3dbebe40", + "parents" : [ "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1" ] + }, { + "catenaXId" : "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b", + "parents" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, { + "catenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "parents" : [ "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708" ] + }, { + "catenaXId" : "urn:uuid:269584ac-ac45-4da4-b05a-8084649446f2", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:1ffb9813-7a5f-49fd-87e5-1ff50b5e4d85", + "parents" : [ "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154" ] + }, { + "catenaXId" : "urn:uuid:2097a597-97c1-42d1-9595-5a4a4650b764", + "parents" : [ "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8" ] + }, { + "catenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "parents" : [ "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8" ] + }, { + "catenaXId" : "urn:uuid:d7a82260-0dd4-4644-a812-04eac0c52bf4", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:36682599-1346-471d-aec9-a65102611bf6", + "parents" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, { + "catenaXId" : "urn:uuid:11990aba-ca76-4d91-a45a-e388f169e7dc", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:e3a368e5-c4e6-4e59-be7a-77a6846c404c", + "parents" : [ "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a" ] + }, { + "catenaXId" : "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a", + "parents" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, { + "catenaXId" : "urn:uuid:06cb2f3f-a2f8-489a-8a7c-fe7a387c09b2", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:d2f7cd1d-19e7-4d8a-82c4-352952cb0b2b", + "parents" : [ "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036" ] + }, { + "catenaXId" : "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912", + "parents" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:60ae3003-2929-4413-9d0b-e760c87fb162", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715", + "parents" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, { + "catenaXId" : "urn:uuid:780afdc2-b1a0-409d-9abb-aac570eef533", + "parents" : [ "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e" ] + }, { + "catenaXId" : "urn:uuid:b396bf83-b90a-4b96-8aaf-339e05fe32ab", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059", + "parents" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868", + "parents" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, { + "catenaXId" : "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43", + "parents" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, { + "catenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:8f3b91ba-55c4-4e94-86bd-5968a8b8749d", + "parents" : [ "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380" ] + }, { + "catenaXId" : "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395", + "parents" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, { + "catenaXId" : "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc", + "parents" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, { + "catenaXId" : "urn:uuid:9a6c557b-ba4c-4f44-b8d0-8c6b51ead200", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8", + "parents" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, { + "catenaXId" : "urn:uuid:1284d656-53a0-4d89-98e3-fd45a29d260b", + "parents" : [ "urn:uuid:6107dd30-028b-4369-b938-8d932e650440" ] + }, { + "catenaXId" : "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c", + "parents" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, { + "catenaXId" : "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369", + "parents" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, { + "catenaXId" : "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649", + "parents" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, { + "catenaXId" : "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a", + "parents" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, { + "catenaXId" : "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a", + "parents" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, { + "catenaXId" : "urn:uuid:63fc503b-884a-4e08-9f59-e286b7caaa86", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "parents" : [ "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c" ] + }, { + "catenaXId" : "urn:uuid:13931e36-2319-4c18-896d-c99ac9fd5b9f", + "parents" : [ "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b" ] + }, { + "catenaXId" : "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68", + "parents" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, { + "catenaXId" : "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4", + "parents" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, { + "catenaXId" : "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c", + "parents" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909", + "parents" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, { + "catenaXId" : "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344", + "parents" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, { + "catenaXId" : "urn:uuid:26de743a-19cf-4246-b088-24776e73372e", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96", + "parents" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, { + "catenaXId" : "urn:uuid:799426f8-474d-4d85-9137-d46129cf5e12", + "parents" : [ "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4" ] + }, { + "catenaXId" : "urn:uuid:c6109698-9d76-467e-b126-136cda9583a1", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:bf612a5c-4209-4880-8f8d-5c53ce1b7a55", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:ba2eca7a-0c0e-4a24-831a-db69d715ae1c", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:6afbd9ce-4796-4268-ad46-47fe9487968d", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:9ea2e158-ffbd-4b7c-bc09-e58100e33c87", + "parents" : [ "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a" ] + }, { + "catenaXId" : "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25", + "parents" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, { + "catenaXId" : "urn:uuid:b368cd4e-f1a9-438d-b6ec-22a31ae7f5d6", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e", + "parents" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:fe1ac555-ecba-42d5-bfc7-56fea2c59d9c", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:5fe3762c-40a6-4107-a917-1ed8c1c94ba5", + "parents" : [ "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a" ] + }, { + "catenaXId" : "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb", + "parents" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, { + "catenaXId" : "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3", + "parents" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, { + "catenaXId" : "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486", + "parents" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, { + "catenaXId" : "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b", + "parents" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce", + "parents" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, { + "catenaXId" : "urn:uuid:948ece07-fc98-419f-b003-c0cf71acf71a", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:24ff4166-bea8-4fa7-b11c-c3e3af5fee99", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b", + "parents" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, { + "catenaXId" : "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65", + "parents" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, { + "catenaXId" : "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce", + "parents" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, { + "catenaXId" : "urn:uuid:0b468211-405e-4061-a727-776149fc35a8", + "parents" : [ "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d" ] + }, { + "catenaXId" : "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698", + "parents" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, { + "catenaXId" : "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b", + "parents" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, { + "catenaXId" : "urn:uuid:8bc7bc7e-d929-4ba0-bc6b-4ed0ad70750b", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:0c1f5873-9464-41fd-b935-ba657603c2b1", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c", + "parents" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, { + "catenaXId" : "urn:uuid:a613e4de-007a-438e-9014-539df063c200", + "parents" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, { + "catenaXId" : "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408", + "parents" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, { + "catenaXId" : "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103", + "parents" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, { + "catenaXId" : "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac", + "parents" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, { + "catenaXId" : "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:af7f5827-a9d0-41ce-9871-06dda6d48c13", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:706c8171-fd94-4c2e-8a43-b3cc6f682294", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:2c13778e-2c16-4863-b696-8716bbd4606c", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc", + "parents" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, { + "catenaXId" : "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48", + "parents" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, { + "catenaXId" : "urn:uuid:30b1ecf4-07e6-4f77-9303-002ef52f0934", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:954db4a3-4bec-4a06-b0d0-205bca2da20b", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:2a117941-9566-407c-82d4-5c6d26c7a820", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:d4d9be86-d529-4cb8-a484-d6ba58f58562", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:db97ef3a-c865-49fb-afed-4fb29d3134c8", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695", + "parents" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca", + "parents" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, { + "catenaXId" : "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5", + "parents" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, { + "catenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "parents" : [ "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361" ] + }, { + "catenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f", + "parents" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18", + "parents" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, { + "catenaXId" : "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b", + "parents" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, { + "catenaXId" : "urn:uuid:136bccf8-17b6-433a-aac6-40935a4a8311", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:c9d6421e-d2dd-43ea-a9ac-72a9d6a25675", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca", + "parents" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, { + "catenaXId" : "urn:uuid:264e340c-c176-440f-8e28-e6741cc6f0e3", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:652dbf9f-340c-45be-8b9e-4cea6dfaf8b9", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:8975db16-e9e6-4147-a8cc-b2c733d2211b", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4", + "parents" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, { + "catenaXId" : "urn:uuid:5be08213-a8bb-4a53-b2e4-f5baa98bdf4b", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:b5f69c2b-2640-4634-9040-deb78c251f8a", + "parents" : [ "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f" ] + }, { + "catenaXId" : "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968", + "parents" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, { + "catenaXId" : "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec", + "parents" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, { + "catenaXId" : "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760", + "parents" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, { + "catenaXId" : "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11", + "parents" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, { + "catenaXId" : "urn:uuid:4f84a861-83ae-415a-b7d0-5b5432a890a7", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef", + "parents" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:091146d7-7b56-49f3-9975-5200b69eeb71", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "parents" : [ "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c" ] + }, { + "catenaXId" : "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8", + "parents" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:0637d576-b597-418f-8fc5-fbbc72ea47a6", + "parents" : [ "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8" ] + }, { + "catenaXId" : "urn:uuid:38845ef1-36b1-4ae5-b8ce-29f3c007c175", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f", + "parents" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246", + "parents" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, { + "catenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "parents" : [ "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa" ] + }, { + "catenaXId" : "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3", + "parents" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, { + "catenaXId" : "urn:uuid:47172491-e327-4aa6-9125-8f037917d412", + "parents" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, { + "catenaXId" : "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567", + "parents" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, { + "catenaXId" : "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433", + "parents" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, { + "catenaXId" : "urn:uuid:9036c8f5-9233-49ec-a927-9f102d25f317", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, { + "catenaXId" : "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:c46044f2-68b2-4ab1-a61a-70a46572237c", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:230ff3d7-155e-478f-a05e-b3b21cb443ba", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a", + "parents" : [ "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37" ] + }, { + "catenaXId" : "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269", + "parents" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, { + "catenaXId" : "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6", + "parents" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, { + "catenaXId" : "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558", + "parents" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, { + "catenaXId" : "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce", + "parents" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, { + "catenaXId" : "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c", + "parents" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, { + "catenaXId" : "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f", + "parents" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, { + "catenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "parents" : [ "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361" ] + }, { + "catenaXId" : "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a", + "parents" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996", + "parents" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, { + "catenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "parents" : [ "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba" ] + }, { + "catenaXId" : "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46", + "parents" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, { + "catenaXId" : "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658", + "parents" : [ "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6" ] + }, { + "catenaXId" : "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f", + "parents" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, { + "catenaXId" : "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a", + "parents" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:0f19d6ea-7042-4cf3-9b52-2e532ff96089", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93", + "parents" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, { + "catenaXId" : "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0", + "parents" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, { + "catenaXId" : "urn:uuid:49959f48-848c-4ed3-ab4a-d37eb4d5902d", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:57c1fab4-b93f-4acf-97c9-e07d74366715", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:7ed5f4ad-ec0f-486a-9332-2d6f9b5e847b", + "parents" : [ "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac" ] + }, { + "catenaXId" : "urn:uuid:0e210008-a479-48bd-9d0f-889471647aaf", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:f10e32fc-613e-4259-928c-21c021e6323c", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:75703d2d-a923-4664-8357-f5d0d5702713", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388", + "parents" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1", + "parents" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, { + "catenaXId" : "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51", + "parents" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, { + "catenaXId" : "urn:uuid:f8824b9f-5d3d-4ca7-9212-5cef3a496e96", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "parents" : [ "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba" ] + }, { + "catenaXId" : "urn:uuid:430ec8c2-a0c2-468c-b23b-05bc1b6ea826", + "parents" : [ "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d" ] + }, { + "catenaXId" : "urn:uuid:46e5d91b-0b70-4b0a-8ac6-33686190c6bb", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:28ba248d-6cb2-46d2-8b51-39513f2e104f", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:7da22501-971b-4580-afc5-5f602a84bcf2", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788", + "parents" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, { + "catenaXId" : "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb", + "parents" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096", + "parents" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, { + "catenaXId" : "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f", + "parents" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "parents" : [ "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba" ] + }, { + "catenaXId" : "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57", + "parents" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, { + "catenaXId" : "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b", + "parents" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, { + "catenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "parents" : [ "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0" ] + }, { + "catenaXId" : "urn:uuid:24e65ea5-e0fd-4f55-b884-8526887a8dd1", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:82a0364b-d70a-4824-bc33-59acde5b15bd", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:b0a64381-0f6a-4448-8a17-5e2ec2cf0d79", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:5301c872-3267-4319-be52-7a537c25f183", + "parents" : [ "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0" ] + }, { + "catenaXId" : "urn:uuid:531d9e13-19ec-4903-ac7a-4f3a333c105a", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e", + "parents" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, { + "catenaXId" : "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b", + "parents" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, { + "catenaXId" : "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f", + "parents" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, { + "catenaXId" : "urn:uuid:6875a8bc-f4f7-4d9b-af54-99760f5e483c", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "parents" : [ "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d" ] + }, { + "catenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "parents" : [ "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba" ] + }, { + "catenaXId" : "urn:uuid:8600785d-f554-4845-aba9-b0a8ba48b8be", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:a35a7b36-a84e-4730-af58-818e95e1151a", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:c1156524-1313-456e-b147-4f495f158583", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "parents" : [ "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361" ] + }, { + "catenaXId" : "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593", + "parents" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, { + "catenaXId" : "urn:uuid:e7a64b63-b518-4ea7-ba39-3c9306c12f9d", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb", + "parents" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:de21aff3-c63c-4b29-a54f-047601ecfa8e", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:e7cb0fdc-2a5f-4d3d-9cf5-a963aad642a3", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:7255efed-2373-4993-80a5-746f83246e18", + "parents" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, { + "catenaXId" : "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee", + "parents" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, { + "catenaXId" : "urn:uuid:67a51fd6-fec4-4101-abee-20d4014f5945", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db", + "parents" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00", + "parents" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, { + "catenaXId" : "urn:uuid:754e2f2b-c91a-434f-a9a5-817f7a47511d", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:540abe25-385a-494e-a8c6-cc0c5e1e3c23", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d", + "parents" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, { + "catenaXId" : "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de", + "parents" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, { + "catenaXId" : "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96", + "parents" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, { + "catenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "parents" : [ "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d" ] + }, { + "catenaXId" : "urn:uuid:92a6002e-4921-4573-9e75-98f9574bae08", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:4e093bf8-70c3-49a1-baf1-e855285f410a", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11", + "parents" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5", + "parents" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d", + "parents" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, { + "catenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "parents" : [ "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629" ] + }, { + "catenaXId" : "urn:uuid:1a067f63-ebbe-4be9-95df-239068ba98d1", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:db3e45c4-49f2-4b40-bb0c-289a91ef430d", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:d0c5da48-58b3-4d44-8faf-288b8761e5f2", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907", + "parents" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3", + "parents" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, { + "catenaXId" : "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da", + "parents" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, { + "catenaXId" : "urn:uuid:da6d57e8-9362-4ede-b7bb-ee240fcc20f6", + "parents" : [ "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc" ] + }, { + "catenaXId" : "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1", + "parents" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, { + "catenaXId" : "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d", + "parents" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, { + "catenaXId" : "urn:uuid:01274f52-bc81-4bd5-b101-80dda2c21080", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:8c14cd71-2f6c-448f-9713-fa0a13bb85c1", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:175d6bda-4ab2-4024-ae81-63c373d29d10", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:bf3b94a0-1d08-476e-b22f-ca0bc712d211", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e", + "parents" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, { + "catenaXId" : "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2", + "parents" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, { + "catenaXId" : "urn:uuid:f7d3ad91-9616-4137-9f16-7e3879ba977c", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026", + "parents" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058", + "parents" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "parents" : [ "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba" ] + }, { + "catenaXId" : "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083", + "parents" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, { + "catenaXId" : "urn:uuid:50d02bcb-026e-4ba0-8fe8-88b6b4c5b8a0", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb", + "parents" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, { + "catenaXId" : "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557", + "parents" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83", + "parents" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29", + "parents" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:65f92cbb-2639-4f15-8c6a-30d81e34141f", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:a34feb51-94ff-4dc8-b077-12af9cf4b36d", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:4856c882-6c66-4b33-bd90-e4c7efb47f92", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1", + "parents" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, { + "catenaXId" : "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16", + "parents" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "parents" : [ "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0" ] + }, { + "catenaXId" : "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462", + "parents" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, { + "catenaXId" : "urn:uuid:ebf7d657-e14b-4bc2-a5d5-da4e8d00bac6", + "parents" : [ "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4" ] + }, { + "catenaXId" : "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403", + "parents" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, { + "catenaXId" : "urn:uuid:075ae995-6bff-41fa-afee-68bc2be0f494", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097", + "parents" : [ "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8" ] + }, { + "catenaXId" : "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922", + "parents" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, { + "catenaXId" : "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912", + "parents" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, { + "catenaXId" : "urn:uuid:669ac9ac-af10-494e-8512-a43230da6f7a", + "parents" : [ "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d" ] + }, { + "catenaXId" : "urn:uuid:5c6e3541-b6c5-4c74-b22e-cadea466b292", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119", + "parents" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, { + "catenaXId" : "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623", + "parents" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, { + "catenaXId" : "urn:uuid:88101ce2-7b64-4d82-94cc-936da164c68c", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e", + "parents" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, { + "catenaXId" : "urn:uuid:67243366-b385-4dce-94e3-b50cf732e9f2", + "parents" : [ "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629" ] + }, { + "catenaXId" : "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c", + "parents" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, { + "catenaXId" : "urn:uuid:6032a5f1-2ed1-46bf-bac0-8f8c57f9fed5", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55", + "parents" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, { + "catenaXId" : "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587", + "parents" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, { + "catenaXId" : "urn:uuid:dac6611b-6e7a-4b9a-a06f-c8173acadac0", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "parents" : [ "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0" ] + }, { + "catenaXId" : "urn:uuid:e84c731a-3221-4002-9e61-dd500978ee81", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999", + "parents" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:33f01141-bc0f-475d-9c8e-0cf2121c4556", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39", + "parents" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, { + "catenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "parents" : [ "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161" ] + }, { + "catenaXId" : "urn:uuid:20d9781b-be2b-4375-9653-45aea945638d", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:23ab16fd-e8bc-46c2-a44c-9d951f55b6f0", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9", + "parents" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, { + "catenaXId" : "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6", + "parents" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "parents" : [ "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0" ] + }, { + "catenaXId" : "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add", + "parents" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, { + "catenaXId" : "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d", + "parents" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:9fe020cb-a3ac-428d-b4b1-5f5db7f11937", + "parents" : [ "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3" ] + }, { + "catenaXId" : "urn:uuid:829b9a9c-ef1c-4c3a-ba08-280610f50e9a", + "parents" : [ "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe" ] + }, { + "catenaXId" : "urn:uuid:540c139b-826e-458e-a536-d6a6d3d01d5e", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c", + "parents" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, { + "catenaXId" : "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b", + "parents" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, { + "catenaXId" : "urn:uuid:16c7a77a-c3eb-4332-8ff5-1e3b909b9c46", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777", + "parents" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:c4699691-12e3-4567-8990-d57c53872f29", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f", + "parents" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, { + "catenaXId" : "urn:uuid:8df160ae-9b28-4195-85e1-1126b2742fd7", + "parents" : [ "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955" ] + }, { + "catenaXId" : "urn:uuid:f449ed2f-92cf-40ce-a5b8-e6098ae5bb52", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58", + "parents" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, { + "catenaXId" : "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3", + "parents" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, { + "catenaXId" : "urn:uuid:7c09fa59-b540-479b-826f-a2cedc94d65b", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "parents" : [ "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d" ] + }, { + "catenaXId" : "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18", + "parents" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d", + "parents" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, { + "catenaXId" : "urn:uuid:5c941efa-a74d-468a-b73c-e10c5684391e", + "parents" : [ "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85" ] + }, { + "catenaXId" : "urn:uuid:facb06ab-db55-41c6-b75e-eafb719641cf", + "parents" : [ "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202" ] + }, { + "catenaXId" : "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea", + "parents" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, { + "catenaXId" : "urn:uuid:3dfb5a47-ea06-4645-8582-ce11f5517fb4", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:cf3004bc-543d-410b-9056-63773a6e66da", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567", + "parents" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, { + "catenaXId" : "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8", + "parents" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, { + "catenaXId" : "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7", + "parents" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, { + "catenaXId" : "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9", + "parents" : [ "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf" ] + }, { + "catenaXId" : "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc", + "parents" : [ "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3" ] + }, { + "catenaXId" : "urn:uuid:536453ae-d4ae-4b84-8ce5-dba91a0761e0", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:38578eb7-3dd5-4b8c-bdfb-a9c0bb725e09", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09", + "parents" : [ "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d" ] + }, { + "catenaXId" : "urn:uuid:e1b86f45-cab7-4be5-9fd3-1bbb1ff8a989", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32", + "parents" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:e7c78143-b5a8-4d42-8b10-f68b368cbc54", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:978aa1e7-89e9-4f4a-a07d-945bff5c9ac8", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982", + "parents" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, { + "catenaXId" : "urn:uuid:0984aed2-c565-443f-aea0-58cff1175b77", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3", + "parents" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, { + "catenaXId" : "urn:uuid:b57e2439-e94b-4a51-ba7e-e2a17ae5f3a5", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113", + "parents" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc", + "parents" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, { + "catenaXId" : "urn:uuid:dc3e2003-f524-414b-bc98-4ed7748be4f1", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86", + "parents" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:4c836cce-1810-4300-be02-917a553acfaa", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:07407037-cffe-4412-b397-b8e87bd33594", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "parents" : [ "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60" ] + }, { + "catenaXId" : "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d", + "parents" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, { + "catenaXId" : "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741", + "parents" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, { + "catenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "parents" : [ "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d" ] + }, { + "catenaXId" : "urn:uuid:065328a3-9abc-4383-9619-f66210a086e8", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:e63dfb42-e66f-4495-a0f2-2401935b7b32", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:cc7e66f4-26f8-4fc4-bc77-905d63b5cb2e", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:ce61739e-d257-4c52-879c-700d6bf74473", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d", + "parents" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, { + "catenaXId" : "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267", + "parents" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, { + "catenaXId" : "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03", + "parents" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, { + "catenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", + "parents" : [ "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161" ] + }, { + "catenaXId" : "urn:uuid:bdb24ca0-906c-42f8-8be1-82f4411cc501", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b", + "parents" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, { + "catenaXId" : "urn:uuid:c1f03e18-442d-4fb8-8fc7-8c07aa7907e6", + "parents" : [ "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4" ] + }, { + "catenaXId" : "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939", + "parents" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, { + "catenaXId" : "urn:uuid:16609a10-6e4a-4720-8c02-26d85f7d84fc", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:a2961ad6-97a6-4204-bde2-3bf24ea7eb26", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d", + "parents" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, { + "catenaXId" : "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40", + "parents" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, { + "catenaXId" : "urn:uuid:5cbaff55-69c6-4585-ba92-74ca55a56b50", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:0046f124-07d5-4ec3-802e-9760172ff872", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:ca77dc4e-e02f-4999-b059-101d6ba18058", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc", + "parents" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, { + "catenaXId" : "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7", + "parents" : [ "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d" ] + }, { + "catenaXId" : "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d", + "parents" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122", + "parents" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, { + "catenaXId" : "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a", + "parents" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, { + "catenaXId" : "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613", + "parents" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea", + "parents" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, { + "catenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:1a915873-ff7f-4ca5-9e8b-365b1fb32c84", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:6d2ed860-fec6-48f2-b7e4-86f9c8f0a594", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061", + "parents" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, { + "catenaXId" : "urn:uuid:aedff1a3-5ba3-44a1-8c18-8ab96953c88a", + "parents" : [ "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc" ] + }, { + "catenaXId" : "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a", + "parents" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, { + "catenaXId" : "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0", + "parents" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, { + "catenaXId" : "urn:uuid:12952a32-02c1-4b91-9eee-73fcbff69b4c", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:1be32f19-97a3-4833-af9d-23b1afae3a9d", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925", + "parents" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, { + "catenaXId" : "urn:uuid:fb4236e9-2c5e-418d-95ae-17845860173a", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:5c2a2893-57bd-44b6-8598-477f07312906", + "parents" : [ "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e" ] + }, { + "catenaXId" : "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b", + "parents" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, { + "catenaXId" : "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d", + "parents" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, { + "catenaXId" : "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc", + "parents" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, { + "catenaXId" : "urn:uuid:7a9adc73-f408-4800-820d-0c82a6bb6b53", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:a0ca972d-a4c8-49a8-89b0-5825e87b4d8f", + "parents" : [ "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91" ] + }, { + "catenaXId" : "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c", + "parents" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, { + "catenaXId" : "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16", + "parents" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, { + "catenaXId" : "urn:uuid:0f94a5ec-b0af-4be1-a9d7-035f285cbf98", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:633f11d8-d463-4a76-b7fa-67099df9a9b1", + "parents" : [ "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1" ] + }, { + "catenaXId" : "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365", + "parents" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, { + "catenaXId" : "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f", + "parents" : [ "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013" ] + }, { + "catenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "parents" : [ "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8" ] + }, { + "catenaXId" : "urn:uuid:d537fe2e-5b76-4f15-bb13-bc5f3be9aee3", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "parents" : [ "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60" ] + }, { + "catenaXId" : "urn:uuid:3b699c94-e6bc-4163-b685-f9683d409add", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3", + "parents" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, { + "catenaXId" : "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b", + "parents" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:cf764f6c-5e57-4001-ad1c-62e1aeb04e5b", + "parents" : [ "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc" ] + }, { + "catenaXId" : "urn:uuid:9a852ada-7d42-4a85-8a19-300503e234ae", + "parents" : [ "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b" ] + }, { + "catenaXId" : "urn:uuid:1b44b453-de0a-4ba5-a0c1-348cf1eb7253", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:7d648933-a961-4608-9ff6-76bc530d7e39", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:235345aa-4748-431a-b051-ca43c76bde73", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2", + "parents" : [ "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334" ] + }, { + "catenaXId" : "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae", + "parents" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, { + "catenaXId" : "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a", + "parents" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, { + "catenaXId" : "urn:uuid:3997bf97-501c-4c43-a3af-d8f97a55131d", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e", + "parents" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, { + "catenaXId" : "urn:uuid:1791d4f5-134a-4083-9e1b-322f1a09a459", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:8659e9a9-c4e4-4a07-9653-923a5707b70c", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:4447cbd1-9a9e-418d-a4bc-ac89f059f7a2", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498", + "parents" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:19357b27-0254-4a1c-b4e8-17eb3b2776bc", + "parents" : [ "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334" ] + }, { + "catenaXId" : "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f", + "parents" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, { + "catenaXId" : "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e", + "parents" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, { + "catenaXId" : "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd", + "parents" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, { + "catenaXId" : "urn:uuid:51f25dea-fcf6-4a4c-869e-c0d8ab411267", + "parents" : [ "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b" ] + }, { + "catenaXId" : "urn:uuid:6c5bf952-e869-4377-8d9a-44c0b979c0ff", + "parents" : [ "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514" ] + }, { + "catenaXId" : "urn:uuid:322f4b0f-b0f6-4722-a777-55e437784ede", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714", + "parents" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, { + "catenaXId" : "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9", + "parents" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, { + "catenaXId" : "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef", + "parents" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, { + "catenaXId" : "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c", + "parents" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, { + "catenaXId" : "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00", + "parents" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:704998a8-f4cb-4845-88a6-8244bca1ae26", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289", + "parents" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, { + "catenaXId" : "urn:uuid:51709f1d-f168-4021-aeb7-e9552a971102", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:1801af6f-1f32-4aa9-b8c6-a4fa4654126b", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:1162726d-3aa8-4973-856a-d880e8032f82", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:d14df189-ce23-4327-b11a-155ccc5ed632", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e", + "parents" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, { + "catenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", + "parents" : [ "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161" ] + }, { + "catenaXId" : "urn:uuid:578689e4-a80f-4952-91b3-799d5140f8ab", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b", + "parents" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, { + "catenaXId" : "urn:uuid:4e894d81-3d2c-46d2-941b-8a3faf8efae2", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:7ca8eef4-4b2e-437b-9ac9-07252a960acb", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec", + "parents" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, { + "catenaXId" : "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f", + "parents" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:576ef77c-432e-4494-bbdf-553e74a9e536", + "parents" : [ "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b" ] + }, { + "catenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "parents" : [ "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa" ] + }, { + "catenaXId" : "urn:uuid:8498accb-798e-4f2b-b498-d08c62abdcac", + "parents" : [ "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a" ] + }, { + "catenaXId" : "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c", + "parents" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, { + "catenaXId" : "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1", + "parents" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c", + "parents" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:21624bd8-af23-4041-abe6-cf9b2abfcf44", + "parents" : [ "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16" ] + }, { + "catenaXId" : "urn:uuid:4123cd33-ab15-421d-a950-a7519bbaf37b", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:d073c75d-d248-47d1-be2c-53809defb10e", + "parents" : [ "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69" ] + }, { + "catenaXId" : "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, { + "catenaXId" : "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015", + "parents" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, { + "catenaXId" : "urn:uuid:8e74dfee-938c-493b-9299-1735da3ed6df", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e", + "parents" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, { + "catenaXId" : "urn:uuid:979818ab-6f5d-42d9-84aa-5fcbf69a06aa", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:c51eba81-e33e-4fb0-b9dc-89b0f8e011cf", + "parents" : [ "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd" ] + }, { + "catenaXId" : "urn:uuid:48299545-a673-467a-a341-f4337dd1ae00", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833", + "parents" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:55506428-2817-42b5-be07-1c981f2526f3", + "parents" : [ "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395" ] + }, { + "catenaXId" : "urn:uuid:6a6eacd7-8c0c-4f9a-864e-0c79087e44fb", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210", + "parents" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, { + "catenaXId" : "urn:uuid:2eb195cc-126d-4616-9394-38db99dcef5b", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:e7de1d4d-9a25-4961-8620-ae04bdc6cbcd", + "parents" : [ "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268" ] + }, { + "catenaXId" : "urn:uuid:226e3a68-f426-4336-9a8a-749392e573c0", + "parents" : [ "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb" ] + }, { + "catenaXId" : "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988", + "parents" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, { + "catenaXId" : "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa", + "parents" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, { + "catenaXId" : "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b", + "parents" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, { + "catenaXId" : "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940", + "parents" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117", + "parents" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, { + "catenaXId" : "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b", + "parents" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:6a67900c-2ac0-43c9-8c92-1060fd1dbe29", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54", + "parents" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:2811981a-3adf-4240-b93e-f608e830b1e9", + "parents" : [ "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4" ] + }, { + "catenaXId" : "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876", + "parents" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, { + "catenaXId" : "urn:uuid:0d74ff2e-be32-4ed4-9dc2-84f74b98e558", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327", + "parents" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, { + "catenaXId" : "urn:uuid:b1cb2ab5-f878-4832-9769-ea6400f69833", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:0213b277-fe9f-4686-a386-6f47e393a6ed", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946", + "parents" : [ "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07" ] + }, { + "catenaXId" : "urn:uuid:2b13a02a-bbe8-4c10-913e-5d398b959655", + "parents" : [ "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695" ] + }, { + "catenaXId" : "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966", + "parents" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, { + "catenaXId" : "urn:uuid:c6a52729-d91e-46ef-a013-fe627d6ff2c7", + "parents" : [ "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b" ] + }, { + "catenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d", + "parents" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, { + "catenaXId" : "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8", + "parents" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, { + "catenaXId" : "urn:uuid:31a8318a-40f3-4b00-8edf-47fb05bf4152", + "parents" : [ "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04" ] + }, { + "catenaXId" : "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe", + "parents" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, { + "catenaXId" : "urn:uuid:0789ef4c-dab5-4caf-a0a6-d49bede78019", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:7a12879c-ac7b-4f12-8e3f-b5168265c44a", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3", + "parents" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, { + "catenaXId" : "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49", + "parents" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, { + "catenaXId" : "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c", + "parents" : [ "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4" ] + }, { + "catenaXId" : "urn:uuid:8cf304b0-4e83-45e6-abd9-9862a574142f", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:9355267e-cf1f-4074-be48-3abd518df5e7", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:db8946a7-ab3d-45ee-a345-c49726021a0c", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:cf37547a-fbc5-44f5-84bc-206a6193e5e0", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:2ce74a26-6c89-4f36-9733-6d43e3c90b26", + "parents" : [ "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946" ] + }, { + "catenaXId" : "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554", + "parents" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, { + "catenaXId" : "urn:uuid:725d5c01-22e1-44d2-8c16-55713f6d6c93", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba", + "parents" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, { + "catenaXId" : "urn:uuid:bb0ee1f6-b151-44c3-b092-932fe29d6f8d", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025", + "parents" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, { + "catenaXId" : "urn:uuid:3a304af0-0c2a-481a-af07-134a0ea18ebc", + "parents" : [ "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7" ] + }, { + "catenaXId" : "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0", + "parents" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, { + "catenaXId" : "urn:uuid:7961eae5-8c87-43c9-84ac-b2ba32435317", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:48031b61-e174-4de6-8f74-03d2d7da2b01", + "parents" : [ "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45" ] + }, { + "catenaXId" : "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47", + "parents" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e", + "parents" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2", + "parents" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, { + "catenaXId" : "urn:uuid:6df1ee71-6ef6-4fa7-aa59-0f0a02e11aa1", + "parents" : [ "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3" ] + }, { + "catenaXId" : "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c", + "parents" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, { + "catenaXId" : "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62", + "parents" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, { + "catenaXId" : "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c", + "parents" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, { + "catenaXId" : "urn:uuid:a712c3e0-58b1-4d2d-81f0-0400e8b8cabd", + "parents" : [ "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63" ] + }, { + "catenaXId" : "urn:uuid:90757687-04ad-468c-9179-447fe3557e4a", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:6dc8934f-423b-4320-ac9b-a07e7a19c7e0", + "parents" : [ "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1" ] + }, { + "catenaXId" : "urn:uuid:ae0ffb80-d877-4320-8acc-7be7cf64955d", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842", + "parents" : [ "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4" ] + }, { + "catenaXId" : "urn:uuid:2f3116a0-2c5f-4d87-b086-a27d0257be26", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068", + "parents" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, { + "catenaXId" : "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78", + "parents" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, { + "catenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "parents" : [ "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d" ] + }, { + "catenaXId" : "urn:uuid:04a4d57c-6c36-4aa4-b97b-ae8b633d67f1", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "parents" : [ "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291" ] + }, { + "catenaXId" : "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570", + "parents" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, { + "catenaXId" : "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205", + "parents" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, { + "catenaXId" : "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad", + "parents" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, { + "catenaXId" : "urn:uuid:e3f25d7f-8f34-4d67-a7d8-e84d5c4fe216", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da", + "parents" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, { + "catenaXId" : "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb", + "parents" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, { + "catenaXId" : "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8", + "parents" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, { + "catenaXId" : "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573", + "parents" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:b5fe6a3a-0c48-4033-90a7-7b43ba99445c", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a", + "parents" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, { + "catenaXId" : "urn:uuid:faa41e43-798b-4c10-86ce-bb0456261d99", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:c92321f3-b53f-4935-978b-e33bee6dc612", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:ae361cb1-782b-42c2-aa4c-c7bc76511fcf", + "parents" : [ "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07" ] + }, { + "catenaXId" : "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd", + "parents" : [ "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4" ] + }, { + "catenaXId" : "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034", + "parents" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, { + "catenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "parents" : [ "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0" ] + }, { + "catenaXId" : "urn:uuid:e341645f-7683-4853-be58-284198e520cf", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:18fe6906-3c9c-44fc-852d-9ffdcc99e1e2", + "parents" : [ "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b" ] + }, { + "catenaXId" : "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b", + "parents" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:b115975c-5782-42d4-a130-615faf60d0d1", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:ee644095-5b98-4809-b738-cbf217a58fc5", + "parents" : [ "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69" ] + }, { + "catenaXId" : "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845", + "parents" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, { + "catenaXId" : "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793", + "parents" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, { + "catenaXId" : "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f", + "parents" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, { + "catenaXId" : "urn:uuid:04842560-7620-4b2c-bc06-f169a13a2056", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc", + "parents" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44", + "parents" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd", + "parents" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, { + "catenaXId" : "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb", + "parents" : [ "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152" ] + }, { + "catenaXId" : "urn:uuid:f7c175ce-00a2-4650-bbae-b6db2669113c", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8", + "parents" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, { + "catenaXId" : "urn:uuid:83f4e19e-f203-4cee-8f59-300f09605948", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821", + "parents" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, { + "catenaXId" : "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219", + "parents" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, { + "catenaXId" : "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34", + "parents" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, { + "catenaXId" : "urn:uuid:84f80f09-1ece-4bb8-b43e-d65cb747fe66", + "parents" : [ "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637" ] + }, { + "catenaXId" : "urn:uuid:6b89263b-0d25-4f72-9af7-238a2a02c179", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:ef7cb20a-aa86-462b-b2e7-6e4216887961", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:71b9835c-6bf1-4fcd-8605-f71c3e6806c9", + "parents" : [ "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd" ] + }, { + "catenaXId" : "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0", + "parents" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, { + "catenaXId" : "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1", + "parents" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302", + "parents" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, { + "catenaXId" : "urn:uuid:d8a44393-81a0-47e4-a689-c0aa8059aaad", + "parents" : [ "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5" ] + }, { + "catenaXId" : "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024", + "parents" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, { + "catenaXId" : "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f", + "parents" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:9dc6eee5-b4c9-4e12-8145-0cbdb4bc4520", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67", + "parents" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, { + "catenaXId" : "urn:uuid:1dd27ae1-5098-4abf-ab2b-e662510b4a1b", + "parents" : [ "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4" ] + }, { + "catenaXId" : "urn:uuid:a18c2536-8993-4c52-aca7-8c7a6629da03", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e", + "parents" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "parents" : [ "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a" ] + }, { + "catenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:c5c96b95-8645-47b0-889b-5cae83bb31fb", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b", + "parents" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, { + "catenaXId" : "urn:uuid:172c7fc5-59dc-4959-bbdf-93dfd2493504", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:38d34b5e-832d-4c02-97b1-233a0ab7ef31", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee", + "parents" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e", + "parents" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, { + "catenaXId" : "urn:uuid:fc164ede-a193-4066-b2c1-3293a7e16be0", + "parents" : [ "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2" ] + }, { + "catenaXId" : "urn:uuid:84e3a802-1774-43b4-b26f-ec61558fc50d", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:25e10753-a6e7-491a-a607-b045674b000d", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:b5bb19e0-079b-42c1-a5e2-b345055d9c95", + "parents" : [ "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc" ] + }, { + "catenaXId" : "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4", + "parents" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, { + "catenaXId" : "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:ebc20d0c-430d-44ba-836f-13edffa434c4", + "parents" : [ "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a" ] + }, { + "catenaXId" : "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a", + "parents" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:cf30ad22-2484-4af7-b707-369fdf2c74e2", + "parents" : [ "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23" ] + }, { + "catenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:ef681011-1486-4081-aba8-4e75cdd5b62f", + "parents" : [ "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154" ] + }, { + "catenaXId" : "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78", + "parents" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, { + "catenaXId" : "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8", + "parents" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, { + "catenaXId" : "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965", + "parents" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, { + "catenaXId" : "urn:uuid:ebab9e2b-efb6-4867-ac1b-d977b1333db3", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:860ae542-3ba4-47cb-ba87-a3a7477fd3da", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3", + "parents" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, { + "catenaXId" : "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6", + "parents" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, { + "catenaXId" : "urn:uuid:f41dae33-1eab-48c5-89d7-f36f71bb4e5a", + "parents" : [ "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89" ] + }, { + "catenaXId" : "urn:uuid:8a2fff9c-9e05-4fdd-a709-be98f75897f6", + "parents" : [ "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013" ] + }, { + "catenaXId" : "urn:uuid:9f8be7fc-b402-41c7-8d8d-7a527c217a4f", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:ae2db4bd-97eb-4630-aaf2-9f94bc12ef78", + "parents" : [ "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d" ] + }, { + "catenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a", + "parents" : [ "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b" ] + }, { + "catenaXId" : "urn:uuid:ff194113-c981-4ff1-bd3e-39bdef41f010", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f", + "parents" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d", + "parents" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, { + "catenaXId" : "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f", + "parents" : [ "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2" ] + }, { + "catenaXId" : "urn:uuid:2a7eab03-5b5b-445e-8504-e777407def9e", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:7a115f4e-eec1-4eff-aeda-64bf13fdb33d", + "parents" : [ "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629" ] + }, { + "catenaXId" : "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf", + "parents" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:6f3dcaf9-580b-4f17-8e51-83d7e0e69b5e", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6", + "parents" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, { + "catenaXId" : "urn:uuid:c2b01216-d298-4987-929a-b1531ae92aa7", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:40f15c89-adee-4916-9641-817309306f70", + "parents" : [ "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380" ] + }, { + "catenaXId" : "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626", + "parents" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, { + "catenaXId" : "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa", + "parents" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, { + "catenaXId" : "urn:uuid:2fa58d7b-ec4b-4647-96d6-932cc62c596d", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:7da1d234-00d9-4c9f-a934-36e087fb04f1", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92", + "parents" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, { + "catenaXId" : "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578", + "parents" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, { + "catenaXId" : "urn:uuid:60a029cf-cff9-4de1-b814-8112b4ead680", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766", + "parents" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:8a906410-7a40-4555-af7b-26d7eab1445f", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:f5560b4a-5b31-4ea4-bf87-b151406f99c0", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:782d267e-e9d1-4871-9cf3-09f2396e4afc", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:6a76f31a-3f21-4528-9240-a21d7d955233", + "parents" : [ "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42" ] + }, { + "catenaXId" : "urn:uuid:94887f91-86d2-42f3-a889-97efad251002", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c", + "parents" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, { + "catenaXId" : "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f", + "parents" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, { + "catenaXId" : "urn:uuid:63cfd847-e616-41e7-b619-66c151de263c", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc", + "parents" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, { + "catenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "parents" : [ "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d" ] + }, { + "catenaXId" : "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70", + "parents" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, { + "catenaXId" : "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4", + "parents" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, { + "catenaXId" : "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7", + "parents" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, { + "catenaXId" : "urn:uuid:d93e2e1b-c93e-487c-a4b7-4e3e86da0a09", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:6c803c63-b98f-42ee-ad43-f13c3bd811de", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "parents" : [ "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9" ] + }, { + "catenaXId" : "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1", + "parents" : [ "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd" ] + }, { + "catenaXId" : "urn:uuid:cb0ea2c0-6360-422a-8bb2-87743f37d3f0", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "parents" : [ "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f" ] + }, { + "catenaXId" : "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af", + "parents" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, { + "catenaXId" : "urn:uuid:22d80cc9-f9dd-40b1-a4e7-5fd23f987c9a", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:fcb45b3f-64a0-4256-8972-e08c68dac265", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:ac42c987-8696-4e66-a718-089117b7a3dd", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:b318f6dd-0edc-4eb5-8d7c-8d38828125f3", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82", + "parents" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "parents" : [ "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d" ] + }, { + "catenaXId" : "urn:uuid:147e4107-4195-4033-ba65-4a03f68bd37a", + "parents" : [ "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1" ] + }, { + "catenaXId" : "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:ba5e8a8f-f786-4fc8-8f1a-8041797faf1a", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9", + "parents" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, { + "catenaXId" : "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665", + "parents" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, { + "catenaXId" : "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde", + "parents" : [ "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b" ] + }, { + "catenaXId" : "urn:uuid:b98b10d1-ea70-47f9-b30c-520f12594519", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903", + "parents" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, { + "catenaXId" : "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467", + "parents" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, { + "catenaXId" : "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7", + "parents" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, { + "catenaXId" : "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56", + "parents" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, { + "catenaXId" : "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73", + "parents" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, { + "catenaXId" : "urn:uuid:c9fe130c-72f0-440e-a719-c5f6ad9dcdf1", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:a4ed6355-8133-4416-b00a-9f3e70f10042", + "parents" : [ "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4" ] + }, { + "catenaXId" : "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55", + "parents" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, { + "catenaXId" : "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b", + "parents" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, { + "catenaXId" : "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac", + "parents" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, { + "catenaXId" : "urn:uuid:facfe7b9-d60d-422a-a02f-0e62d5cb53fe", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:cfa317a9-28ce-4efb-a9e8-8882d5921e9e", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad", + "parents" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, { + "catenaXId" : "urn:uuid:704f495b-15b3-451c-9f1e-245a3a3a347b", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:643ebb6a-62ad-4061-8172-e3fa0488bff1", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97", + "parents" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, { + "catenaXId" : "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58", + "parents" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819", + "parents" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, { + "catenaXId" : "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, { + "catenaXId" : "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f", + "parents" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a", + "parents" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160", + "parents" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:e526c1ae-6ae7-4a45-a0ea-20c26d5f43c1", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:ad5a606f-e65b-4b56-a822-2854f49045eb", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad", + "parents" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:c4817a1a-2bc0-48cc-a60e-75ffbe28a2ce", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "parents" : [ "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60" ] + }, { + "catenaXId" : "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47", + "parents" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45", + "parents" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, { + "catenaXId" : "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a", + "parents" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, { + "catenaXId" : "urn:uuid:085380b4-eefc-480f-b7c8-67a3487b64db", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:4017cc16-9d27-43a6-897d-1a5d14537b8d", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df", + "parents" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, { + "catenaXId" : "urn:uuid:560c7ebb-6fa6-42cc-b28c-e82e68b65fd6", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662", + "parents" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, { + "catenaXId" : "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7", + "parents" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, { + "catenaXId" : "urn:uuid:6d7e3917-7613-4003-b4f0-7a706f5fd701", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:6da731cd-dba9-460d-8112-c28469b849ce", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389", + "parents" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:f3e2fa33-538d-4c8b-ad72-8f0b4ede3b80", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:8406fdf7-3dfb-44d6-b607-a5457ef09869", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:21331807-8e10-4cc9-bb9a-a97605977c25", + "parents" : [ "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc" ] + }, { + "catenaXId" : "urn:uuid:a0c89b26-fcbf-4047-8715-6a909ccc44c2", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8", + "parents" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, { + "catenaXId" : "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d", + "parents" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, { + "catenaXId" : "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577", + "parents" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, { + "catenaXId" : "urn:uuid:e170d0a8-00bf-49a6-8048-e6aeabc286bc", + "parents" : [ "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91" ] + }, { + "catenaXId" : "urn:uuid:8dc5f023-fe95-40c9-808b-bd98d86c43ea", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02", + "parents" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, { + "catenaXId" : "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760", + "parents" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, { + "catenaXId" : "urn:uuid:81b1870e-7b2f-45dc-9e13-5bb57ce3fb25", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a", + "parents" : [ "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95" ] + }, { + "catenaXId" : "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435", + "parents" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:1ec0d9f1-996b-4fa7-a4b2-0741d61d2ae9", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86", + "parents" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:9fa379a5-69ea-4557-87a7-9dfa6dc51b33", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:e5326f8f-1237-4271-aab9-c74de8a63dd9", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:721a91cd-1d95-4f5c-a98b-2d3e353afbe4", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7", + "parents" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, { + "catenaXId" : "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc", + "parents" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, { + "catenaXId" : "urn:uuid:d13410e5-9a80-459c-84e0-c00aa46f4899", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:a86753ef-d526-42e4-9c03-cbab94f10d73", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:07afa459-e9fa-42cf-a5a5-aae4eedd24fa", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:258cb46c-f178-462a-9e6b-da58be4ac64b", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:842ed6fd-9249-42c5-bd76-80b74df003e0", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:e8db82eb-f2bb-4949-b038-558fa3c9c2eb", + "parents" : [ "urn:uuid:961122be-b51f-48c6-bf33-739105a25092" ] + }, { + "catenaXId" : "urn:uuid:3468a376-0781-460d-8116-f856d82991d8", + "parents" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, { + "catenaXId" : "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb", + "parents" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b", + "parents" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, { + "catenaXId" : "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c", + "parents" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, { + "catenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:c89f4216-abed-408a-8c0f-cb35fe312a28", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44", + "parents" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, { + "catenaXId" : "urn:uuid:9f104e98-667d-4d8e-bf77-4e04eb33419a", + "parents" : [ "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0" ] + }, { + "catenaXId" : "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d", + "parents" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, { + "catenaXId" : "urn:uuid:c7d4fd11-8386-48d1-9898-23450b20a2bf", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:9b520d70-3594-417b-84b1-8fcd6f3e172c", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491", + "parents" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, { + "catenaXId" : "urn:uuid:42ada632-1346-4dc8-ae8d-1094c958804b", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:7d962e85-0fd4-4e9f-8a81-f9830611629c", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:367cc710-899c-4d41-9b6c-4acbec4942a6", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23", + "parents" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, { + "catenaXId" : "urn:uuid:76f63806-a591-42ab-9ce4-79e433eec2b3", + "parents" : [ "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3" ] + }, { + "catenaXId" : "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894", + "parents" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, { + "catenaXId" : "urn:uuid:730a4154-b1a9-4931-bc5b-b6dc52556ced", + "parents" : [ "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b" ] + }, { + "catenaXId" : "urn:uuid:ac153abb-4705-4f7c-9104-adebed1ea70d", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3", + "parents" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222", + "parents" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, { + "catenaXId" : "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4", + "parents" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, { + "catenaXId" : "urn:uuid:42ca4ada-b460-4611-999e-358915788495", + "parents" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, { + "catenaXId" : "urn:uuid:67b866ae-dada-4898-a5fa-c54bcd03fa84", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:00f10d14-bfc2-4695-91eb-e5a9f2bb29f1", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:a097b02d-2f66-4038-8d30-b9347da7a562", + "parents" : [ "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4" ] + }, { + "catenaXId" : "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d", + "parents" : [ "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63" ] + }, { + "catenaXId" : "urn:uuid:e140ec3c-d7f1-4f46-adaf-cc97339e4f42", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:1d6f3a2c-722b-40ae-b18b-28aafcee939f", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2", + "parents" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, { + "catenaXId" : "urn:uuid:ed9ac0b8-628c-4a5e-bfc3-cbec70f2a1d3", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:6db4bf93-d388-4fb8-9818-769e710626fd", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:5c1745f9-49da-4372-8e56-c471eb1dba10", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b", + "parents" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, { + "catenaXId" : "urn:uuid:28aeca09-a251-4629-820d-eb047addc9c7", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715", + "parents" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, { + "catenaXId" : "urn:uuid:a6ff547d-3aec-4eb7-bd80-2c467fb7aa24", + "parents" : [ "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49" ] + }, { + "catenaXId" : "urn:uuid:8e40ffda-4ed9-4610-8547-6f802637a831", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc", + "parents" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, { + "catenaXId" : "urn:uuid:1814d556-1265-42a7-8083-99aec5522368", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:12c7e3aa-3dca-4391-a11e-c8d66629a9c4", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53", + "parents" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, { + "catenaXId" : "urn:uuid:b4df5b9f-da07-4f02-bb57-4cbd5ca6dde6", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:18900eaa-f611-4073-a945-1250f1e2fccf", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:104e798d-0283-4243-9aec-b90715e8a31c", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, { + "catenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:ed88ebdf-8b6d-4b48-926f-0240ca818fb3", + "parents" : [ "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4" ] + }, { + "catenaXId" : "urn:uuid:c33f4513-9fae-4ff4-8a17-493e0b48f72b", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366", + "parents" : [ "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b" ] + }, { + "catenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "parents" : [ "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1" ] + }, { + "catenaXId" : "urn:uuid:20674b35-f4c1-44c9-934b-8c1fc783a5e1", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1", + "parents" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, { + "catenaXId" : "urn:uuid:ccab5e8b-ff32-4644-a121-78f2509bb617", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:cc496c32-d6a5-466f-9187-3a9a0d6d96f9", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:982b4856-c029-41a2-a593-56f5d38a9f81", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474", + "parents" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, { + "catenaXId" : "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f", + "parents" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, { + "catenaXId" : "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae", + "parents" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, { + "catenaXId" : "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3", + "parents" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, { + "catenaXId" : "urn:uuid:8184a9e1-a587-4319-9228-3729ed0cd019", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934", + "parents" : [ "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc" ] + }, { + "catenaXId" : "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed", + "parents" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, { + "catenaXId" : "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa", + "parents" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, { + "catenaXId" : "urn:uuid:9e0b3452-97f4-4ef0-ad1d-334c2db1d8eb", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824", + "parents" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, { + "catenaXId" : "urn:uuid:c99064fa-8be7-498a-8b43-6df7ebca8b85", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8", + "parents" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, { + "catenaXId" : "urn:uuid:05d9435d-b88a-4722-802f-a58d3d7d384f", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66", + "parents" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, { + "catenaXId" : "urn:uuid:31ac2152-d914-4966-925e-5ffacd9b56dd", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:4b0eb27b-8c3f-4f4c-b7fd-fd5d2a8a144a", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:c724ee23-9e58-4c80-be7f-47192d98a418", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:ac11a67e-f7ab-4feb-9001-217b88fb744b", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1", + "parents" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, { + "catenaXId" : "urn:uuid:fbae2f31-880b-453d-bed3-798ccdf3a1b0", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:2b988c9e-1a2c-441d-bcd9-127f36c3fa10", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:86a9803f-8ff7-4edb-a209-44a4da4d1c28", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c", + "parents" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, { + "catenaXId" : "urn:uuid:3a49690c-8af4-458a-bd37-0fa5a0519d0f", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6", + "parents" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140", + "parents" : [ "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2" ] + }, { + "catenaXId" : "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22", + "parents" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, { + "catenaXId" : "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9", + "parents" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, { + "catenaXId" : "urn:uuid:94db8f20-0325-419b-b878-abba77600dde", + "parents" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "parents" : [ "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d" ] + }, { + "catenaXId" : "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a", + "parents" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, { + "catenaXId" : "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609", + "parents" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, { + "catenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "parents" : [ "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291" ] + }, { + "catenaXId" : "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204", + "parents" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, { + "catenaXId" : "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005", + "parents" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, { + "catenaXId" : "urn:uuid:7eb9c492-8bc4-4429-b1f9-b8c8cf2a9f17", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932", + "parents" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, { + "catenaXId" : "urn:uuid:06f37cc3-ad17-4d8f-af0b-1f090d493c39", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3", + "parents" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, { + "catenaXId" : "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d", + "parents" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6", + "parents" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, { + "catenaXId" : "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba", + "parents" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, { + "catenaXId" : "urn:uuid:98ac4634-bbc6-4e0c-9351-99a50d0eea31", + "parents" : [ "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6" ] + }, { + "catenaXId" : "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9", + "parents" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f", + "parents" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, { + "catenaXId" : "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04", + "parents" : [ "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9" ] + }, { + "catenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "parents" : [ "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9" ] + }, { + "catenaXId" : "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392", + "parents" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, { + "catenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "parents" : [ "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0" ] + }, { + "catenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434", + "parents" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, { + "catenaXId" : "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029", + "parents" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e", + "parents" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, { + "catenaXId" : "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47", + "parents" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, { + "catenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e", + "parents" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, { + "catenaXId" : "urn:uuid:e43847f4-7dbd-40b3-85c9-98ef8c7240c6", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:b6670a4f-528f-4047-a733-c22ad8d4e246", + "parents" : [ "urn:uuid:b7230e91-645e-49af-897f-9a8289061926" ] + }, { + "catenaXId" : "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622", + "parents" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, { + "catenaXId" : "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7", + "parents" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, { + "catenaXId" : "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b", + "parents" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, { + "catenaXId" : "urn:uuid:8b3c5ad6-e4bd-4227-b245-e8cba8b1e4e8", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa", + "parents" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, { + "catenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "parents" : [ "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291" ] + }, { + "catenaXId" : "urn:uuid:f0f0aebb-b973-4db8-8795-628c2430d5b4", + "parents" : [ "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0" ] + }, { + "catenaXId" : "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c", + "parents" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:80c5a9a8-a644-4560-bec5-4cbd67cff480", + "parents" : [ "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1" ] + }, { + "catenaXId" : "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb", + "parents" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842", + "parents" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:e8eb41ce-6d94-45c9-8a11-5b2d4cdaab66", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175", + "parents" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa", + "parents" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, { + "catenaXId" : "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2", + "parents" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, { + "catenaXId" : "urn:uuid:2713ac59-4bdc-45e5-9ad4-0a48382a2a14", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1", + "parents" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, { + "catenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "parents" : [ "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708" ] + }, { + "catenaXId" : "urn:uuid:cdccb71d-5746-48a0-82e6-aa22d452d282", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe", + "parents" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, { + "catenaXId" : "urn:uuid:a5a97c77-a736-4c80-b8c6-21a1155fde6c", + "parents" : [ "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268" ] + }, { + "catenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497", + "parents" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914", + "parents" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:d4d3cca1-f378-457d-9d18-4e45641c071a", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f", + "parents" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "parents" : [ "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa" ] + }, { + "catenaXId" : "urn:uuid:b0ba45b4-7511-4619-b58a-dca85cb37db4", + "parents" : [ "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85" ] + }, { + "catenaXId" : "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81", + "parents" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, { + "catenaXId" : "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf", + "parents" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, { + "catenaXId" : "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a", + "parents" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, { + "catenaXId" : "urn:uuid:4fc991c9-af03-4914-9286-420aad5ac291", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1", + "parents" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, { + "catenaXId" : "urn:uuid:a8c0d550-59c4-40e7-9c0e-dc1b87ec80b1", + "parents" : [ "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4" ] + }, { + "catenaXId" : "urn:uuid:e6d3af8b-f85b-4353-b79a-2ab56ad908ec", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14", + "parents" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, { + "catenaXId" : "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055", + "parents" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, { + "catenaXId" : "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:d47e0a83-384b-4121-8131-13fe4f9f4b43", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e", + "parents" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, { + "catenaXId" : "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f", + "parents" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, { + "catenaXId" : "urn:uuid:0f6cc463-6e84-4fa1-9526-382b625e259d", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5", + "parents" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, { + "catenaXId" : "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654", + "parents" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, { + "catenaXId" : "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a", + "parents" : [ "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a" ] + }, { + "catenaXId" : "urn:uuid:17a10219-0d03-4816-8c45-63ca4e46c018", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0", + "parents" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b", + "parents" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, { + "catenaXId" : "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8", + "parents" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, { + "catenaXId" : "urn:uuid:b1d5d81e-f9fb-424a-aae8-e6a4efc5bc86", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:b352c9a6-8ce4-4ec7-89d5-77bee402cdd7", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:7afb4a8e-bb54-4c4a-abae-567e5ef71821", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac", + "parents" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, { + "catenaXId" : "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593", + "parents" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, { + "catenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "parents" : [ "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d" ] + }, { + "catenaXId" : "urn:uuid:121a21a0-856c-4819-92e5-b69385a6a571", + "parents" : [ "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc" ] + }, { + "catenaXId" : "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7", + "parents" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, { + "catenaXId" : "urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665", + "parents" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, { + "catenaXId" : "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666", + "parents" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, { + "catenaXId" : "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7", + "parents" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, { + "catenaXId" : "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc", + "parents" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, { + "catenaXId" : "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:1c683f18-5b01-42e2-b78f-afd03581dfc1", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d", + "parents" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c", + "parents" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724", + "parents" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, { + "catenaXId" : "urn:uuid:b006db33-ac4f-43d2-b14a-5c8d0f0ddf74", + "parents" : [ "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb" ] + }, { + "catenaXId" : "urn:uuid:220aa390-1d75-4054-a13a-989be84494a9", + "parents" : [ "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58" ] + }, { + "catenaXId" : "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8", + "parents" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, { + "catenaXId" : "urn:uuid:88d3c6c5-6007-4938-83d7-8ee4138d84ce", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:94bfd3e0-46b4-4633-bb56-7ffee15a2184", + "parents" : [ "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab" ] + }, { + "catenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "parents" : [ "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7" ] + }, { + "catenaXId" : "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff", + "parents" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, { + "catenaXId" : "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1", + "parents" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, { + "catenaXId" : "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c", + "parents" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, { + "catenaXId" : "urn:uuid:0b56ddd6-d64d-432b-bcdb-3ef349dd42be", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6", + "parents" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, { + "catenaXId" : "urn:uuid:ae547ab6-70a6-4b85-8283-2f2337d2d59a", + "parents" : [ "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf" ] + }, { + "catenaXId" : "urn:uuid:f4207530-7f08-4c3f-a216-6a4bf344ca8e", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6", + "parents" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, { + "catenaXId" : "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4", + "parents" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, { + "catenaXId" : "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b", + "parents" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, { + "catenaXId" : "urn:uuid:f3b0a665-7c8c-4c79-9ba5-beb9c3f138df", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:961122be-b51f-48c6-bf33-739105a25092", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:884c4fff-44f1-495b-9faa-c9b338d3a0b9", + "parents" : [ "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f" ] + }, { + "catenaXId" : "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957", + "parents" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, { + "catenaXId" : "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd", + "parents" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, { + "catenaXId" : "urn:uuid:6b33bddf-efee-4765-8860-5efd70e0a200", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42", + "parents" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, { + "catenaXId" : "urn:uuid:4cc0fbca-a79c-475f-b4e4-74a3b1801770", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:b40cdaac-bbb9-47a0-8f95-385689f631d2", + "parents" : [ "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a" ] + }, { + "catenaXId" : "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, { + "catenaXId" : "urn:uuid:53eca8e7-8031-4220-a6b8-f927f0364fe8", + "parents" : [ "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0" ] + }, { + "catenaXId" : "urn:uuid:7d31f16b-1a0b-4e11-9a07-00c75e8d5bb6", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067", + "parents" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, { + "catenaXId" : "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0", + "parents" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced", + "parents" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, { + "catenaXId" : "urn:uuid:75cbd7f7-16c1-4ff5-b911-56cef45f736f", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "parents" : [ "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c" ] + }, { + "catenaXId" : "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09", + "parents" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, { + "catenaXId" : "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6", + "parents" : [ "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2" ] + }, { + "catenaXId" : "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476", + "parents" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, { + "catenaXId" : "urn:uuid:4ffded1a-2e22-44b9-804d-3c72189bf83f", + "parents" : [ "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9" ] + }, { + "catenaXId" : "urn:uuid:433a69b3-c65e-4bd5-9b97-674fd2613fec", + "parents" : [ "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152" ] + }, { + "catenaXId" : "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c", + "parents" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, { + "catenaXId" : "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335", + "parents" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, { + "catenaXId" : "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28", + "parents" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, { + "catenaXId" : "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:45b546b7-1439-4e53-ba58-4890e9a6a0d3", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28", + "parents" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, { + "catenaXId" : "urn:uuid:57fa3cb7-e13c-4a77-ba89-264b7a0c59b6", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:c3e01ae2-8573-4103-a87a-c3b5bb34b48a", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3", + "parents" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, { + "catenaXId" : "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c", + "parents" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, { + "catenaXId" : "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453", + "parents" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, { + "catenaXId" : "urn:uuid:ba696742-552f-46bc-b2b9-84ad669bb273", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:6d16110b-6a80-4d28-8c58-c71dc9d1f6eb", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e", + "parents" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, { + "catenaXId" : "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca", + "parents" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434", + "parents" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, { + "catenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "parents" : [ "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1" ] + }, { + "catenaXId" : "urn:uuid:d3270d6c-060e-48b7-a93f-e487ce6b9b97", + "parents" : [ "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679" ] + }, { + "catenaXId" : "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91", + "parents" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, { + "catenaXId" : "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220", + "parents" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, { + "catenaXId" : "urn:uuid:a14f80cc-6783-40d0-8bc7-73535b163c76", + "parents" : [ "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9" ] + }, { + "catenaXId" : "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b", + "parents" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:f6d580d4-6ca9-4f28-a66e-e12b25247949", + "parents" : [ "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6" ] + }, { + "catenaXId" : "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835", + "parents" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, { + "catenaXId" : "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8", + "parents" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e", + "parents" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, { + "catenaXId" : "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332", + "parents" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77", + "parents" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, { + "catenaXId" : "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, { + "catenaXId" : "urn:uuid:d16d3485-92a6-408b-b1ec-102412315acb", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:8181e7be-ea40-4932-8c2d-720a48dd2e26", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:18dee324-3016-4968-bdce-a1338fec49c1", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:5417bc75-ac1c-4eb7-9ee9-1b58179f8cd7", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab", + "parents" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:50ce9389-2ccb-4945-b336-1617e4679863", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:c114479a-d9fd-45ff-9f8f-783b6e2a09a3", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:d1f5e786-2764-4304-b94e-5d42ff35c166", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6", + "parents" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, { + "catenaXId" : "urn:uuid:1c6b8466-5257-4269-a686-caf30f28f5d4", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:f36e139a-125a-4956-a0c8-fdbcdd30bb09", + "parents" : [ "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052" ] + }, { + "catenaXId" : "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80", + "parents" : [ "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60" ] + }, { + "catenaXId" : "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c", + "parents" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, { + "catenaXId" : "urn:uuid:e46d0ccc-585f-4724-9562-a0f1f1c3b292", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:abeba0ea-a269-4c12-bf65-c4f631981be4", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f", + "parents" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, { + "catenaXId" : "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714", + "parents" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06", + "parents" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, { + "catenaXId" : "urn:uuid:dcf5ee0d-914a-4c38-8490-1273d917bdff", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:faa134b5-b18b-483e-92cf-766463f54d15", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343", + "parents" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, { + "catenaXId" : "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5", + "parents" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, { + "catenaXId" : "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea", + "parents" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, { + "catenaXId" : "urn:uuid:d78aa54d-14bc-40d2-8edb-883fb8a3b7b4", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693", + "parents" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, { + "catenaXId" : "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c", + "parents" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, { + "catenaXId" : "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683", + "parents" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e", + "parents" : [ "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b" ] + }, { + "catenaXId" : "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c", + "parents" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5", + "parents" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, { + "catenaXId" : "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4", + "parents" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, { + "catenaXId" : "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af", + "parents" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, { + "catenaXId" : "urn:uuid:d8dc6e59-161d-4323-97ed-56302ea7a827", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:cd8b0275-15cb-4aac-8a2b-f56757c716d6", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca", + "parents" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, { + "catenaXId" : "urn:uuid:a63b01ca-a9a4-4ce5-9639-c848fc411146", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845", + "parents" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, { + "catenaXId" : "urn:uuid:f6d5590c-3449-434f-8b02-06db4ae4fce2", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:1073432c-3eb4-40e0-91fd-dc41b7c4d7c0", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:e5d7dc94-c823-4581-8623-cd5513879197", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c", + "parents" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, { + "catenaXId" : "urn:uuid:549df514-2045-4fb4-88c2-45e444fd93bb", + "parents" : [ "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a" ] + }, { + "catenaXId" : "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de", + "parents" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, { + "catenaXId" : "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb", + "parents" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, { + "catenaXId" : "urn:uuid:8d27d6c6-8c3f-442f-b030-b7cdba53fc15", + "parents" : [ "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09" ] + }, { + "catenaXId" : "urn:uuid:29306b37-b89e-4bf5-9dc2-f92280134aac", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677", + "parents" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, { + "catenaXId" : "urn:uuid:bdadb221-5d9b-4dc2-801c-12ca006b4ede", + "parents" : [ "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75" ] + }, { + "catenaXId" : "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a", + "parents" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2", + "parents" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:982c36bf-fa34-4289-a731-9b8cd371cd1a", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26", + "parents" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, { + "catenaXId" : "urn:uuid:22e1a55d-b713-4652-a647-f3e10bf21654", + "parents" : [ "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f" ] + }, { + "catenaXId" : "urn:uuid:1f90d132-820c-4ceb-b36f-1a319f67a039", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94", + "parents" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, { + "catenaXId" : "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518", + "parents" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, { + "catenaXId" : "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45", + "parents" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, { + "catenaXId" : "urn:uuid:4aa12612-8cff-4de0-81ac-4eeca63157e9", + "parents" : [ "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8" ] + }, { + "catenaXId" : "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8", + "parents" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, { + "catenaXId" : "urn:uuid:de9ab0e9-4d03-450c-bd01-86f5408bc516", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "parents" : [ "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d" ] + }, { + "catenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "parents" : [ "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9" ] + }, { + "catenaXId" : "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe", + "parents" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, { + "catenaXId" : "urn:uuid:776b5497-1d21-4d91-ad4e-c781579eb3d0", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:3e49560c-95db-4b04-b984-d8b21639a9f3", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:50a3fe7e-43a2-4482-b827-4a291d1fb101", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d", + "parents" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, { + "catenaXId" : "urn:uuid:3852c430-b854-47aa-a0ed-139cae6abbf8", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:4f38da4b-eaa0-439c-88ef-19562818501c", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "parents" : [ "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c" ] + }, { + "catenaXId" : "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd", + "parents" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, { + "catenaXId" : "urn:uuid:8be87615-0bb8-4521-84b7-1558c4e96fc8", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70", + "parents" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:6cdb3c09-3773-4520-a8c6-8b547c41f4b2", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:c7f3d6e0-5ae3-42ac-a9bb-be8a28df6f7a", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:d07ef48a-039a-44c6-8441-6b1445e86850", + "parents" : [ "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013" ] + }, { + "catenaXId" : "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79", + "parents" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, { + "catenaXId" : "urn:uuid:40899128-9044-485e-826e-c271d8987f92", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2", + "parents" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, { + "catenaXId" : "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12", + "parents" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, { + "catenaXId" : "urn:uuid:44dce81c-618a-4068-aa2d-fdd0f7a7bdf5", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:11b9a51e-037b-46e0-ac73-9beac5545670", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f", + "parents" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, { + "catenaXId" : "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38", + "parents" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c", + "parents" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, { + "catenaXId" : "urn:uuid:e09c3065-c382-4bec-998d-8f79a730ad83", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727", + "parents" : [ "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22" ] + }, { + "catenaXId" : "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, { + "catenaXId" : "urn:uuid:c7e5b255-f19d-4a34-a632-a6c2a266c148", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379", + "parents" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, { + "catenaXId" : "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783", + "parents" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, { + "catenaXId" : "urn:uuid:8b808b9d-6e56-4a16-b523-95ee1596d97d", + "parents" : [ "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5" ] + }, { + "catenaXId" : "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38", + "parents" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, { + "catenaXId" : "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f", + "parents" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, { + "catenaXId" : "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340", + "parents" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45", + "parents" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f", + "parents" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, { + "catenaXId" : "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586", + "parents" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, { + "catenaXId" : "urn:uuid:73cd3a10-4017-4eee-a91b-f9c82af384a0", + "parents" : [ "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5" ] + }, { + "catenaXId" : "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e", + "parents" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, { + "catenaXId" : "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96", + "parents" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, { + "catenaXId" : "urn:uuid:fbb5f81b-56be-4481-9d80-b25bd4255981", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282", + "parents" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, { + "catenaXId" : "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad", + "parents" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, { + "catenaXId" : "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675", + "parents" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, { + "catenaXId" : "urn:uuid:f39ef86f-c1be-4c09-b61f-b7d12db688e5", + "parents" : [ "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280" ] + }, { + "catenaXId" : "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852", + "parents" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, { + "catenaXId" : "urn:uuid:33c40622-6e9b-478e-a6dd-caeb5deaea51", + "parents" : [ "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280" ] + }, { + "catenaXId" : "urn:uuid:6d8d1663-2f66-407c-be74-12b01eff8f49", + "parents" : [ "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3" ] + }, { + "catenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "parents" : [ "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8" ] + }, { + "catenaXId" : "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:402766de-9419-4c90-9106-af80d5a99b01", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4", + "parents" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, { + "catenaXId" : "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093", + "parents" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, { + "catenaXId" : "urn:uuid:6005cfdf-fdb6-44e2-a41a-7011d10c936c", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:5ae46e16-a7dc-4f76-ab17-04d26b48fa80", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:a80434e0-09f5-43bc-ba17-2bf0fc426548", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6", + "parents" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, { + "catenaXId" : "urn:uuid:fbb04405-3ecb-4b86-b773-80ea9a190535", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6", + "parents" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, { + "catenaXId" : "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d", + "parents" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, { + "catenaXId" : "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831", + "parents" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, { + "catenaXId" : "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af", + "parents" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, { + "catenaXId" : "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc", + "parents" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, { + "catenaXId" : "urn:uuid:69ee185f-23dd-4dbb-b630-3be4dc4bce88", + "parents" : [ "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b" ] + }, { + "catenaXId" : "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613", + "parents" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, { + "catenaXId" : "urn:uuid:175e94c0-dcda-465b-a896-81a2a9b28262", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd", + "parents" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, { + "catenaXId" : "urn:uuid:4f33e9dd-2d42-4c46-8305-665ab106f13a", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13", + "parents" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, { + "catenaXId" : "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2", + "parents" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, { + "catenaXId" : "urn:uuid:355f4608-3f67-4d2f-9128-fcf5fd63f603", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:78c2eb8f-8dcb-4e4b-9608-4acc3c2c8f1a", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:eb0b6b81-b232-478d-ad90-8cfbd8a18efc", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f", + "parents" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, { + "catenaXId" : "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda", + "parents" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, { + "catenaXId" : "urn:uuid:6ed47271-323b-46e9-a129-9d884bd7e88b", + "parents" : [ "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf" ] + }, { + "catenaXId" : "urn:uuid:168707cf-75b8-496d-b0e0-df2131887d40", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "parents" : [ "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f" ] + }, { + "catenaXId" : "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1", + "parents" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, { + "catenaXId" : "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55", + "parents" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, { + "catenaXId" : "urn:uuid:cfa90568-2e8d-4de7-9ed9-d73c4b0df0e4", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, { + "catenaXId" : "urn:uuid:e5f95d60-078a-4c77-93a6-106ee56aa491", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5", + "parents" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7", + "parents" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, { + "catenaXId" : "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, { + "catenaXId" : "urn:uuid:14f52091-249f-4ee6-a0f8-1724ead45d46", + "parents" : [ "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75" ] + }, { + "catenaXId" : "urn:uuid:03397882-baee-44bf-abd2-b02a0b4fadc2", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4", + "parents" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, { + "catenaXId" : "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155", + "parents" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, { + "catenaXId" : "urn:uuid:20b62ec3-20a3-4420-9135-e7f309e43bc7", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422", + "parents" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, { + "catenaXId" : "urn:uuid:7697dd1a-a013-4daa-a266-b63e8b295a9d", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca", + "parents" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, { + "catenaXId" : "urn:uuid:9aac9db5-72d4-4fe9-8663-335b72d37720", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac", + "parents" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, { + "catenaXId" : "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650", + "parents" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, { + "catenaXId" : "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55", + "parents" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, { + "catenaXId" : "urn:uuid:b7e98b7c-e28b-4b55-9b1b-dde2c82d8284", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678", + "parents" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, { + "catenaXId" : "urn:uuid:606d833b-ef5f-42ef-a737-3edf3963a9e9", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:5fee25cf-5a93-4352-aed6-cd81c8d12a2f", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf", + "parents" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, { + "catenaXId" : "urn:uuid:2d74bb30-3a72-4561-ab19-0446606774b8", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "parents" : [ "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d" ] + }, { + "catenaXId" : "urn:uuid:ac65bc6f-6882-4136-a31e-c2a1ff24859f", + "parents" : [ "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334" ] + }, { + "catenaXId" : "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe", + "parents" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, { + "catenaXId" : "urn:uuid:6f067dc2-6915-4b23-9706-e796e718461f", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:36766c01-1b22-4b2e-946f-c7ce17cde8ff", + "parents" : [ "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5" ] + }, { + "catenaXId" : "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "parents" : [ "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7" ] + }, { + "catenaXId" : "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8", + "parents" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:dd12bc61-2833-49c4-9278-babe8c7dd04e", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d", + "parents" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, { + "catenaXId" : "urn:uuid:98e7b7bb-99b8-482b-88aa-5f43b6ac48a2", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9", + "parents" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, { + "catenaXId" : "urn:uuid:5d4be00d-f4aa-4fde-ad20-79898702b19a", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:7e8b28f0-8ff2-4dfd-8c19-e2e211d58701", + "parents" : [ "urn:uuid:40f15c89-adee-4916-9641-817309306f70" ] + }, { + "catenaXId" : "urn:uuid:f40f1b3b-47b1-4c9e-a198-65ba1da9b6e4", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:57850083-6bc9-4a83-b3d3-ca72d4420d07", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:7541250d-208f-42c0-b286-e2c8a862e20b", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01", + "parents" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5", + "parents" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, { + "catenaXId" : "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68", + "parents" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, { + "catenaXId" : "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d", + "parents" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:a645261b-6959-49ea-b499-263697b0d439", + "parents" : [ "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6" ] + }, { + "catenaXId" : "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116", + "parents" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, { + "catenaXId" : "urn:uuid:84cc2b87-8fd2-4d55-8a98-33f4cfe762b9", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "parents" : [ "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361" ] + }, { + "catenaXId" : "urn:uuid:a56eb62d-bd6e-48e4-ab3f-369760f9483d", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:579c1e5f-1509-4f37-b072-d05e65f97c13", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:a2776b04-23a4-44d6-9601-7327c1f4d988", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:d42439ef-fba8-44be-8075-07c01c3da1a9", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:4f432782-9bf5-41ee-a55b-5342cc4e63a9", + "parents" : [ "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e" ] + }, { + "catenaXId" : "urn:uuid:fb0eafb0-388d-49b8-a620-9efeb01ea0d3", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "parents" : [ "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9" ] + }, { + "catenaXId" : "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93", + "parents" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, { + "catenaXId" : "urn:uuid:00e7cc1c-3ae1-447f-8136-878c1d218a4d", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:6cad7bf5-f537-464d-961c-ca354c57102c", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a", + "parents" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:939aee14-2326-4703-9634-2033acde9e90", + "parents" : [ "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154" ] + }, { + "catenaXId" : "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f", + "parents" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, { + "catenaXId" : "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10", + "parents" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, { + "catenaXId" : "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555", + "parents" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:8960a8bf-bdab-4a11-a4a6-052c83371750", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:bc2a5af6-1b71-43e7-ac55-6b9874495261", + "parents" : [ "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69" ] + }, { + "catenaXId" : "urn:uuid:57a70421-b526-4785-855a-922917104ed8", + "parents" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "parents" : [ "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c" ] + }, { + "catenaXId" : "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1", + "parents" : [ "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628", + "parents" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, { + "catenaXId" : "urn:uuid:b5cba17a-396d-48c1-a7f4-d9eafbeb287c", + "parents" : [ "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a" ] + }, { + "catenaXId" : "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3", + "parents" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, { + "catenaXId" : "urn:uuid:c2a913ef-9d54-4610-b786-ad70a9570e40", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05", + "parents" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, { + "catenaXId" : "urn:uuid:d18f20cc-c779-4592-a2c4-15bde849e7e8", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:53c1e7ca-bdbb-4e01-a11a-ba0dd42763d0", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b", + "parents" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, { + "catenaXId" : "urn:uuid:5fdd6b9a-dca1-4d85-ab50-36358ee3b889", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d", + "parents" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, { + "catenaXId" : "urn:uuid:610c3b7e-2809-4055-9206-7d411de64da7", + "parents" : [ "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d" ] + }, { + "catenaXId" : "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b", + "parents" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, { + "catenaXId" : "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49", + "parents" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4", + "parents" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, { + "catenaXId" : "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5", + "parents" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4", + "parents" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, { + "catenaXId" : "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8", + "parents" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, { + "catenaXId" : "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe", + "parents" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, { + "catenaXId" : "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274", + "parents" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, { + "catenaXId" : "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e", + "parents" : [ "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f" ] + }, { + "catenaXId" : "urn:uuid:2fffea0f-9628-4e2e-a96f-47af3985e5b2", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:47b69781-947a-498d-9f5a-0b26d6536b1a", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "parents" : [ "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f" ] + }, { + "catenaXId" : "urn:uuid:49801bd9-32a9-4e76-8e7f-1b043dd2b422", + "parents" : [ "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154" ] + }, { + "catenaXId" : "urn:uuid:880bcd50-5863-40bc-a783-923ea1a463ee", + "parents" : [ "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6" ] + }, { + "catenaXId" : "urn:uuid:b94ee658-c50b-44fc-92bb-a33738556a47", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8", + "parents" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, { + "catenaXId" : "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616", + "parents" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, { + "catenaXId" : "urn:uuid:aa1d0eee-72d3-4cd7-8da3-96a2ae0c5534", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:286d3893-cc8a-4a20-a9a7-d6cd2e7d060c", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230", + "parents" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, { + "catenaXId" : "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093", + "parents" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553", + "parents" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, { + "catenaXId" : "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855", + "parents" : [ "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f", "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c", "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155", "urn:uuid:727334c5-5b6f-444f-8204-f19796212538", "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd", "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce", "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9", "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6", "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f", "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3", "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695", "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad", "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355", "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df", "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7", "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b", "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57", "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d", "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6", "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0", "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6", "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2", "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102", "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25", "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6", "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b", "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a", "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696", "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a", "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e", "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade", "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d", "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735", "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725", "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357", "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6", "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967", "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031", "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57", "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c", "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30", "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9", "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd", "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6", "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791", "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57", "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403", "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635", "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a", "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f", "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013", "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0", "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886", "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4", "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5", "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575", "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f", "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd", "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817", "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d", "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b", "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4", "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b", "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939", "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88", "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10", "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929", "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab", "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17", "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8", "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef", "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f", "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f", "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61", "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4", "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b", "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac", "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280", "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842", "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81", "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12", "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df", "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b", "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa", "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e", "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d", "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525", "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af", "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9", "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161", "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302", "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099", "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013", "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e", "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5", "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb", "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50", "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f", "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3", "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27", "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b", "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6", "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe", "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d", "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202", "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823", "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0", "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066", "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c", "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e", "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372", "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9", "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f", "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0", "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f", "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99", "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9", "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb", "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688", "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c", "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1", "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b", "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771", "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1", "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef", "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42", "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927", "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba", "urn:uuid:18485718-4e23-451e-ae02-ee412f647061", "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e", "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750", "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb", "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c", "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b", "urn:uuid:36682599-1346-471d-aec9-a65102611bf6", "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912", "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868", "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c", "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a", "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909", "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344", "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486", "urn:uuid:a613e4de-007a-438e-9014-539df063c200", "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408", "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48", "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695", "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca", "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5", "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f", "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18", "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b", "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca", "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4", "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec", "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef", "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f", "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433", "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6", "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269", "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce", "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46", "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f", "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93", "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1", "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788", "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57", "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b", "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b", "urn:uuid:7255efed-2373-4993-80a5-746f83246e18", "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee", "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d", "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96", "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11", "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5", "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3", "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da", "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1", "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026", "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058", "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083", "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83", "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557", "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1", "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403", "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462", "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922", "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912", "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623", "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e", "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c", "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587", "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999", "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39", "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6", "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9", "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add", "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d", "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c", "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777", "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f", "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58", "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3", "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18", "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32", "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982", "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3", "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc", "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86", "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741", "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d", "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267", "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03", "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d", "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea", "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061", "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a", "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0", "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925", "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16", "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365", "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3", "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae", "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e", "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e", "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714", "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9", "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef", "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00", "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f", "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1", "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c", "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015", "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e", "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988", "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b", "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117", "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54", "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327", "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966", "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe", "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49", "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554", "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025", "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0", "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c", "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c", "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570", "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205", "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad", "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a", "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845", "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f", "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd", "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821", "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34", "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1", "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302", "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024", "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f", "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67", "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b", "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e", "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4", "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a", "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8", "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965", "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6", "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f", "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf", "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6", "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92", "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766", "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc", "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4", "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70", "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7", "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82", "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665", "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903", "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56", "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55", "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b", "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a", "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f", "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160", "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad", "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45", "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a", "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df", "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662", "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8", "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d", "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02", "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760", "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a", "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435", "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7", "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc", "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44", "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d", "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23", "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4", "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2", "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b", "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427", "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1", "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474", "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f", "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3", "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8", "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1", "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c", "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6", "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609", "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204", "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932", "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d", "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6", "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba", "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392", "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434", "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029", "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e", "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47", "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e", "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622", "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7", "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b", "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa", "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c", "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175", "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2", "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1", "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe", "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914", "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81", "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a", "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14", "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e", "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5", "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654", "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0", "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8", "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666", "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665", "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc", "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1", "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c", "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6", "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4", "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067", "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0", "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476", "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c", "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28", "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28", "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3", "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca", "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434", "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91", "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b", "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8", "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db", "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab", "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6", "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c", "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f", "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714", "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343", "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5", "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea", "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693", "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683", "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c", "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c", "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5", "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4", "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845", "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de", "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677", "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a", "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2", "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26", "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94", "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe", "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd", "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70", "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79", "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2", "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12", "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38", "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f", "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379", "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38", "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340", "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e", "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282", "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad", "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093", "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4", "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af", "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc", "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2", "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13", "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7", "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1", "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422", "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac", "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55", "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678", "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe", "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8", "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d", "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68", "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d", "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116", "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555", "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f", "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3", "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05", "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b", "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4", "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5", "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4", "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8", "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe", "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274", "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e", "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8", "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093", "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d", "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4", "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9", "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988", "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9", "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a", "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e", "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544", "urn:uuid:45260051-797c-4192-a267-13464af74381", "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15", "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2", "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa", "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e", "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae", "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12", "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca", "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1", "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22", "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e", "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950", "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c", "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d", "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66", "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491", "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3", "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470", "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda", "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939", "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d", "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905", "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81", "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068", "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50", "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a", "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d", "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2", "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53", "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd", "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e", "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4", "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172", "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b", "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79", "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1", "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47", "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a", "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e", "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6", "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297", "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338", "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d", "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4", "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82", "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465", "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c", "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b", "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4", "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba", "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9", "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198", "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5", "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5", "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b", "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe", "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768", "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130", "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e", "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b", "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d", "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4", "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb", "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2", "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a", "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f", "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2", "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08", "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94", "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac", "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377", "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3", "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72", "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718", "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927", "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df", "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf", "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0", "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a", "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043", "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe", "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1", "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c", "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4", "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d", "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32", "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42", "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591", "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d", "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8", "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225", "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc", "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884", "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9", "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b", "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5", "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533", "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c", "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad", "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2", "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075", "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a", "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe", "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4", "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614", "urn:uuid:199cde2c-af12-461c-baf9-295080a03022", "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63", "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983", "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c", "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d", "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1", "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94", "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161", "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b", "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53", "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4", "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43", "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237", "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499", "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84", "urn:uuid:07c22736-3033-4645-994c-e16c603ea140", "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7", "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617", "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a", "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e", "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536", "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09", "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395", "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd", "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef", "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892", "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99", "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4", "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97", "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60", "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15", "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e", "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7", "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392", "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041", "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91", "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2", "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96", "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5", "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591", "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a", "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1", "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14", "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91", "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e", "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d", "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646", "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4", "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978", "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b", "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9", "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82", "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb" ] + }, { + "catenaXId" : "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d", + "parents" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:661cc9b7-a1cc-4516-9529-312209f57719", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4", + "parents" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, { + "catenaXId" : "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:f49b210f-c19c-4bfa-85e0-857c263789d0", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a", + "parents" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, { + "catenaXId" : "urn:uuid:5fbe4950-60c0-4172-ac15-8c8d0f324de4", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:33430fa7-5dba-45ef-b36c-d07183692f68", + "parents" : [ "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9" ] + }, { + "catenaXId" : "urn:uuid:c13cc8f9-43c5-40e8-b213-bc96f9ed1b2e", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:787aa97a-05ac-4f56-aa6d-a9646e8e5daf", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9", + "parents" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, { + "catenaXId" : "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede", + "parents" : [ "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb", "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858", "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92", "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40", "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2", "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84", "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f", "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4", "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b", "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187", "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0", "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21", "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761", "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60", "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c", "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0", "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517", "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb", "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f", "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b", "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5", "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5", "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6", "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010", "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48", "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b", "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65", "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c", "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b", "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f", "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29", "urn:uuid:427725ea-b017-447e-9120-159db70c5cde", "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454", "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d", "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c", "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46", "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4", "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af", "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2", "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e", "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc", "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34", "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980", "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950", "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa", "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51", "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9", "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6", "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d", "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa", "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71", "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80", "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c", "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836", "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181", "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba", "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5", "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf", "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914", "urn:uuid:607ad661-65fd-4535-b100-62119f605a17", "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c", "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc", "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c", "urn:uuid:1e564b09-9353-4726-935b-8f388825f710", "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7", "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c", "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9", "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23", "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925", "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553", "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05", "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f", "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd", "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377", "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406", "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4", "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8", "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9", "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde", "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387", "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404", "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae", "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf", "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5", "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf", "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c", "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1", "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4", "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7", "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2", "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157", "urn:uuid:4def8315-96e0-4586-9257-debaedff2142", "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc", "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b", "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4", "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b", "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25", "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80", "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071", "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54", "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea", "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683", "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39", "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222", "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c", "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802", "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa", "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503", "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71", "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df", "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302", "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61", "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5", "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6", "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90", "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70", "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7", "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2", "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb", "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0", "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9", "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce", "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9", "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d", "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f", "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b", "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91", "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24", "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410", "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2", "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e", "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572", "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe", "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846", "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade", "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4", "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3", "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71", "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967", "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3", "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8", "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4", "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb", "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e", "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e", "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6", "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614", "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8", "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc", "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06", "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75", "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2", "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d", "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a", "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1", "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a", "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715", "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059", "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43", "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395", "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc", "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8", "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369", "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649", "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a", "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68", "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c", "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4", "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96", "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25", "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e", "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb", "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3", "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b", "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce", "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b", "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65", "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce", "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698", "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b", "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c", "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103", "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac", "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc", "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968", "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760", "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11", "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8", "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246", "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3", "urn:uuid:47172491-e327-4aa6-9125-8f037917d412", "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567", "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de", "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558", "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f", "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c", "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a", "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996", "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a", "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0", "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388", "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51", "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb", "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096", "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f", "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e", "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f", "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593", "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb", "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db", "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00", "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de", "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d", "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907", "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d", "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e", "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2", "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb", "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29", "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16", "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119", "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55", "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b", "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d", "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea", "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8", "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567", "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7", "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113", "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d", "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b", "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939", "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40", "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc", "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d", "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122", "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a", "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613", "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b", "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d", "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc", "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c", "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b", "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a", "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498", "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f", "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd", "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c", "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289", "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e", "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b", "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec", "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c", "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc", "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833", "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210", "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa", "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940", "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b", "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876", "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d", "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8", "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3", "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba", "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47", "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e", "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2", "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62", "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068", "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78", "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da", "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb", "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8", "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573", "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034", "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b", "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793", "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44", "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc", "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8", "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219", "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0", "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e", "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee", "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78", "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3", "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d", "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f", "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626", "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa", "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578", "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c", "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f", "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af", "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9", "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467", "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7", "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73", "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac", "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad", "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97", "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58", "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819", "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74", "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47", "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7", "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389", "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577", "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86", "urn:uuid:3468a376-0781-460d-8116-f856d82991d8", "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb", "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b", "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c", "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491", "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894", "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3", "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222", "urn:uuid:42ca4ada-b460-4611-999e-358915788495", "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715", "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc", "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53", "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae", "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed", "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa", "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824", "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66", "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22", "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9", "urn:uuid:94db8f20-0325-419b-b878-abba77600dde", "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a", "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005", "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3", "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9", "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f", "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb", "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842", "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa", "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497", "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f", "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf", "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1", "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055", "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f", "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b", "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac", "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593", "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7", "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7", "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d", "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c", "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724", "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8", "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff", "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6", "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b", "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957", "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd", "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42", "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df", "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced", "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09", "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335", "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c", "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453", "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e", "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220", "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835", "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e", "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332", "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77", "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06", "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af", "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca", "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c", "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb", "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518", "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45", "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8", "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d", "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c", "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727", "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213", "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783", "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f", "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45", "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f", "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586", "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96", "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675", "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852", "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6", "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d", "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6", "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831", "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613", "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd", "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda", "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f", "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1", "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55", "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee", "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5", "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4", "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155", "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca", "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650", "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf", "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9", "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01", "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5", "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93", "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a", "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10", "urn:uuid:57a70421-b526-4785-855a-922917104ed8", "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628", "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1", "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b", "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d", "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49", "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616", "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230", "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553", "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a", "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c", "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f", "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc", "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba", "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6", "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04", "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46", "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc", "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a", "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b", "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc", "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758", "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e", "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8", "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0", "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3", "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5", "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c", "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e", "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a", "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda", "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39", "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3", "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006", "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096", "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f", "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6", "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27", "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330", "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa", "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a", "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2", "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a", "urn:uuid:4d917918-5d80-4152-822f-95180227262e", "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719", "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a", "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30", "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818", "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8", "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02", "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3", "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361", "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2", "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3", "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd", "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2", "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666", "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3", "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681", "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5", "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975", "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a", "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458", "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1", "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412", "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5", "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0", "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6", "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1", "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4", "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9", "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b", "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2", "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6", "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426", "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf", "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846", "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f", "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281", "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b", "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf", "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3", "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c", "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6", "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c", "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c", "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15", "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7", "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e", "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d", "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3", "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2", "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577", "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136", "urn:uuid:24faab64-718d-479b-913d-9808f3972c07", "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be", "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a", "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad", "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5", "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7", "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b", "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631", "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39", "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228", "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503", "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe", "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c", "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6", "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24", "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262", "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2", "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7", "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6", "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18", "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c", "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51", "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d", "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41", "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7", "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92", "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b", "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f", "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f", "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb", "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448", "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d", "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5", "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b", "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86", "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2", "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a", "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578", "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc", "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3", "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412", "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e", "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62", "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30", "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf", "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7", "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405", "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26", "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a", "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa", "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1", "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333", "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373", "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa", "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8", "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef", "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba", "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160", "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997", "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc", "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852", "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d", "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30", "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0", "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847", "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206", "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784", "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859", "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b", "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4", "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f", "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15", "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c", "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5", "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095", "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703", "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465", "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e", "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7", "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7", "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557", "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7", "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269", "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7", "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b", "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037", "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd", "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f", "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8", "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799", "urn:uuid:347fa75b-a32b-4579-8844-938065c04854", "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194", "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1", "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830", "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336", "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5", "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa" ] + }, { + "catenaXId" : "urn:uuid:303eacbb-cd85-430a-8754-ec86997ebe63", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:705596ec-8705-4f18-a7da-ddb1661aa606", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:dc3a42b1-c01b-42ce-8735-b734fcf9b391", + "parents" : [ "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8" ] + }, { + "catenaXId" : "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988", + "parents" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c", + "parents" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, { + "catenaXId" : "urn:uuid:c8a971a8-bec3-4f4e-91cd-437fa48279a5", + "parents" : [ "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637" ] + }, { + "catenaXId" : "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9", + "parents" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, { + "catenaXId" : "urn:uuid:2dc8c038-beb4-40d0-bb98-5db46f3ff9c6", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:e19f47a5-6888-415e-b322-ee3999fe5dc3", + "parents" : [ "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733" ] + }, { + "catenaXId" : "urn:uuid:331c54d4-7989-405e-839a-144bcbd78b19", + "parents" : [ "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68" ] + }, { + "catenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "parents" : [ "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa" ] + }, { + "catenaXId" : "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a", + "parents" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, { + "catenaXId" : "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e", + "parents" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, { + "catenaXId" : "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544", + "parents" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, { + "catenaXId" : "urn:uuid:e7c4e7ca-d1dc-4b4e-9437-ccce0b74d90c", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:45260051-797c-4192-a267-13464af74381", + "parents" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15", + "parents" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, { + "catenaXId" : "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2", + "parents" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, { + "catenaXId" : "urn:uuid:e4fdb8c5-ad96-46fd-a03a-2741ab629452", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa", + "parents" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, { + "catenaXId" : "urn:uuid:818dd9aa-57f0-4a52-84ac-5496ba9b6000", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:90fe01b3-8535-4c14-aae4-8c5712902b9d", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:6052e6f6-1f4c-42e6-9d12-c424dee2b75b", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "parents" : [ "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9" ] + }, { + "catenaXId" : "urn:uuid:0616945c-0c35-465c-935c-ef8cc9c9ef57", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:f944b674-f9d1-4500-ad3b-421188a1e491", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e", + "parents" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, { + "catenaXId" : "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12", + "parents" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae", + "parents" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, { + "catenaXId" : "urn:uuid:5a2ae04e-8db3-45b7-af3d-d6da92dfe3bb", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca", + "parents" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, { + "catenaXId" : "urn:uuid:d6f151e1-fc53-468c-9590-e87489d05076", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:c2bf9e12-e661-4401-8c85-3b2ed1bbdcac", + "parents" : [ "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51" ] + }, { + "catenaXId" : "urn:uuid:fccbd46b-36aa-4a9d-9c54-5bcdfaee60d8", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "parents" : [ "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7" ] + }, { + "catenaXId" : "urn:uuid:e888e125-70fd-4b47-93b7-f0239cdcf485", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:49fad1d2-4056-481a-885f-f46f8f83215b", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:9c8d81e8-c276-49c1-a976-2159f90302ad", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:57cdf60c-7dc8-4cba-a941-1ddaff271a69", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:9c268030-0bde-42d0-848a-e60360fab623", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f", + "parents" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1", + "parents" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:f957021c-207b-4f71-ba76-12b05e7e0990", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:220f7d14-c8b3-4b24-889f-e9639528aea7", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22", + "parents" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba", + "parents" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, { + "catenaXId" : "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc", + "parents" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, { + "catenaXId" : "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e", + "parents" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, { + "catenaXId" : "urn:uuid:8221f659-aaf2-4f65-871c-e7ce58d754f4", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:e9f28253-f353-4672-9408-9c5bc2d376a9", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:82b2aadf-c08d-420b-a474-306d704fbeeb", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950", + "parents" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, { + "catenaXId" : "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c", + "parents" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, { + "catenaXId" : "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6", + "parents" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, { + "catenaXId" : "urn:uuid:eb3d8803-d9a5-417a-b3f8-c0e51a5ba55a", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:1369f28c-611c-4da8-8314-9d06bc2651ee", + "parents" : [ "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5" ] + }, { + "catenaXId" : "urn:uuid:378ac667-0b78-4584-8cc9-f86b0717a5db", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04", + "parents" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, { + "catenaXId" : "urn:uuid:838ecbb3-28d4-443c-a29a-2762b7b5db69", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:62a1673c-ec20-40bf-9c63-59e5853832a4", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:105560fe-a174-4da2-8006-70a788431888", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46", + "parents" : [ "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57" ] + }, { + "catenaXId" : "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc", + "parents" : [ "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156" ] + }, { + "catenaXId" : "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d", + "parents" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, { + "catenaXId" : "urn:uuid:f90625ca-12a8-48d1-94c9-313e6b363b77", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66", + "parents" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, { + "catenaXId" : "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491", + "parents" : [ "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:26b2c4dc-93e6-4403-b97c-84fbd43cf148", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:43cd2be5-6e55-4f4b-8206-23ca1970f765", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3", + "parents" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470", + "parents" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:805e82c3-a261-4f69-9326-d8d02c49cc32", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda", + "parents" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, { + "catenaXId" : "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939", + "parents" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, { + "catenaXId" : "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a", + "parents" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, { + "catenaXId" : "urn:uuid:99d5be0d-38fd-4261-bbe7-55f742c85a6d", + "parents" : [ "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152" ] + }, { + "catenaXId" : "urn:uuid:19da9c69-825d-4343-9ba6-5f3887e7d789", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d", + "parents" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, { + "catenaXId" : "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905", + "parents" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, { + "catenaXId" : "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b", + "parents" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b" ] + }, { + "catenaXId" : "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81", + "parents" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:abc4fc03-cc66-4328-b9a2-70b1eb5889d8", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:306091f6-52d2-4b95-b28f-bf69e67f049f", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc", + "parents" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, { + "catenaXId" : "urn:uuid:9478e3e2-7716-429f-b709-62a06e83286a", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758", + "parents" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, { + "catenaXId" : "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e", + "parents" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, { + "catenaXId" : "urn:uuid:b986ee0a-7b14-4020-8f78-f92e82669a7d", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:6752c819-cf99-42fe-adc0-cfad0902850f", + "parents" : [ "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202" ] + }, { + "catenaXId" : "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8", + "parents" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, { + "catenaXId" : "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068", + "parents" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, { + "catenaXId" : "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50", + "parents" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, { + "catenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "parents" : [ "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629" ] + }, { + "catenaXId" : "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0", + "parents" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a", + "parents" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, { + "catenaXId" : "urn:uuid:bdcdae70-3d8e-4f20-a669-f9ff02057ee4", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3", + "parents" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, { + "catenaXId" : "urn:uuid:3dae49ed-2135-40df-b2cc-9e898637a58c", + "parents" : [ "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f" ] + }, { + "catenaXId" : "urn:uuid:2e0cd53d-8fd4-48f3-8a13-e14502948faa", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:ffcd2e31-f787-4f28-824e-e682a33ee33d", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:7314031a-a6ae-4a93-be51-89c0d18f2836", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d", + "parents" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, { + "catenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:a4a729c9-96b8-43b9-ac32-ee9979304e66", + "parents" : [ "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733" ] + }, { + "catenaXId" : "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5", + "parents" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, { + "catenaXId" : "urn:uuid:886e51c5-974b-4630-bcd1-c9f5827d3144", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c", + "parents" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, { + "catenaXId" : "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2", + "parents" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53", + "parents" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, { + "catenaXId" : "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e", + "parents" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, { + "catenaXId" : "urn:uuid:202898f9-33d6-4903-89a7-91b0f4b0d40b", + "parents" : [ "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb" ] + }, { + "catenaXId" : "urn:uuid:3da74474-1b9d-45b1-99d2-af79aa508b93", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:2bf6e90e-c9d9-4bc9-8ab7-e56ce3b9d060", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd", + "parents" : [ "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:8be10fcf-e5e6-459e-a78f-4bf4f65257c1", + "parents" : [ "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c" ] + }, { + "catenaXId" : "urn:uuid:6cba1b97-cb3e-498c-b0cb-15a3694c7693", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:a9830aae-8a30-452a-8b74-cb4bf64469b7", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:e90ad517-06ea-4252-96bd-8863282e91c9", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:15e8dbeb-e744-4ed1-87a3-4a539dc5274b", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:e8fe6f59-5c46-4d17-8fdf-a2977cf1669b", + "parents" : [ "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16" ] + }, { + "catenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "parents" : [ "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629" ] + }, { + "catenaXId" : "urn:uuid:c81f3e88-bb0c-4dc8-8a43-3f62e5511ef2", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:268795d2-91e8-40f3-b942-db053427cd1a", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:a7d6c254-f9f6-4533-95f2-1432a1851b42", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "parents" : [ "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a" ] + }, { + "catenaXId" : "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a", + "parents" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, { + "catenaXId" : "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda", + "parents" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, { + "catenaXId" : "urn:uuid:ffaeeab2-8828-4d6c-b358-1fa5b84d7433", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:80a6df34-1f60-4ffd-8c04-ccd7267af32a", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:4c71271c-3059-40e6-b8ad-8f52f376decc", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:bbaa8934-0937-468f-99df-27784e6eff4c", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39", + "parents" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, { + "catenaXId" : "urn:uuid:23e30efe-e925-4132-bb7c-f89a9b5e46d7", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3", + "parents" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, { + "catenaXId" : "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e", + "parents" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, { + "catenaXId" : "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4", + "parents" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, { + "catenaXId" : "urn:uuid:fd082e40-921f-4edc-a0ef-1ba537037e52", + "parents" : [ "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2" ] + }, { + "catenaXId" : "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172", + "parents" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, { + "catenaXId" : "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006", + "parents" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:c00003af-58fd-4b7c-a8e8-48353488db45", + "parents" : [ "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76" ] + }, { + "catenaXId" : "urn:uuid:21429e22-60e8-4e2a-9f15-73e1aa0a5f1f", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096", + "parents" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:5dd133f0-54d3-4086-a48b-f327e2ab3b3b", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "parents" : [ "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1" ] + }, { + "catenaXId" : "urn:uuid:9e3287f0-0449-4cec-bf92-1c8ddafd1dce", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:262be818-78a2-4ef0-b6ee-164c16994ced", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f", + "parents" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6", + "parents" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b", + "parents" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, { + "catenaXId" : "urn:uuid:cd0c5fa4-c9a2-437a-995a-693827d6d0c2", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76", + "parents" : [ "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16" ] + }, { + "catenaXId" : "urn:uuid:0a65e4da-1be7-4f8e-92ab-a89890cef613", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79", + "parents" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, { + "catenaXId" : "urn:uuid:cd27fb0b-8264-4182-9ff9-e45897760b24", + "parents" : [ "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2" ] + }, { + "catenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "parents" : [ "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c" ] + }, { + "catenaXId" : "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1", + "parents" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, { + "catenaXId" : "urn:uuid:f0b58fe0-d932-4df1-acc1-1eeeeac1103f", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:fc6ee0d5-5466-49da-ba5c-6018779a852f", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47", + "parents" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, { + "catenaXId" : "urn:uuid:3a90004c-8c41-4046-9471-c21a9fe3f3b4", + "parents" : [ "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91" ] + }, { + "catenaXId" : "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27", + "parents" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, { + "catenaXId" : "urn:uuid:97ebcd87-224c-41ff-9ecc-05d8c483fb58", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:0a257342-95ed-403f-8cfb-903b65eb3fec", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:ecfc696b-1c8d-4b77-9955-023f139b8322", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:04479d1c-1d77-4b82-a85f-514f20ff3672", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330", + "parents" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, { + "catenaXId" : "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623", + "parents" : [ "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1" ] + }, { + "catenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:0d50b9c8-a354-4155-ab02-d58b22852512", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa", + "parents" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, { + "catenaXId" : "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a", + "parents" : [ "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa" ] + }, { + "catenaXId" : "urn:uuid:4f624c91-519c-4961-af5d-0d81371984b7", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2", + "parents" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, { + "catenaXId" : "urn:uuid:94392891-51de-41a0-a22b-3b91d0007594", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a", + "parents" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, { + "catenaXId" : "urn:uuid:4d917918-5d80-4152-822f-95180227262e", + "parents" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, { + "catenaXId" : "urn:uuid:5441dbcc-3bd6-4a67-bee1-882f4efe9e27", + "parents" : [ "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb" ] + }, { + "catenaXId" : "urn:uuid:556b807c-1c54-4cb5-8eda-033a2db1ed5b", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719", + "parents" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, { + "catenaXId" : "urn:uuid:6fccf022-a777-4166-8dc1-45c9e6e7bd6f", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a", + "parents" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, { + "catenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "parents" : [ "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d" ] + }, { + "catenaXId" : "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:1b6c824f-f352-4991-a23a-bc3783178682", + "parents" : [ "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154" ] + }, { + "catenaXId" : "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a", + "parents" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, { + "catenaXId" : "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e", + "parents" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30", + "parents" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, { + "catenaXId" : "urn:uuid:157a3434-d281-4de4-9652-150f9049e6b7", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "parents" : [ "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8" ] + }, { + "catenaXId" : "urn:uuid:0de5cdd7-7a92-4186-817c-19a7a4358cfc", + "parents" : [ "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d" ] + }, { + "catenaXId" : "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", "urn:uuid:4132374f-9583-4130-a115-e7293f553311", "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "parents" : [ "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361" ] + }, { + "catenaXId" : "urn:uuid:92a205c4-2623-404c-9cf3-33b136995fef", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6", + "parents" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, { + "catenaXId" : "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818", + "parents" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, { + "catenaXId" : "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8", + "parents" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, { + "catenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "parents" : [ "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0" ] + }, { + "catenaXId" : "urn:uuid:15a5ac55-f21a-48ba-b893-6b2310fa6923", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:84fe981f-2696-4bf4-9e14-ca0d86b40fbc", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297", + "parents" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, { + "catenaXId" : "urn:uuid:7ddc3de7-c032-4b21-acd3-1eefc35d698c", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:b1514135-7aed-443f-aa42-3d824f31897c", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:335e9821-0868-4424-9040-417db5947f5d", + "parents" : [ "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4" ] + }, { + "catenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "parents" : [ "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d" ] + }, { + "catenaXId" : "urn:uuid:e8edf987-db8c-4dd7-b233-6d8ad2e253cd", + "parents" : [ "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842" ] + }, { + "catenaXId" : "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338", + "parents" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, { + "catenaXId" : "urn:uuid:4e4556b7-8dec-488d-8e56-340423db48bd", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:d1e71ea7-29f2-4f39-9d5d-65a37ad47777", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:11cdab08-699b-4646-ab47-475addeabd96", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d", + "parents" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, { + "catenaXId" : "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4", + "parents" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, { + "catenaXId" : "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82", + "parents" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, { + "catenaXId" : "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465", + "parents" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, { + "catenaXId" : "urn:uuid:1f105134-f21d-4892-b0b1-167df2e074da", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c", + "parents" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, { + "catenaXId" : "urn:uuid:c6c5af39-bebf-426f-84c2-4fcefdaaf06a", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:7b6f48f0-48db-4825-8fb2-aadecb0fd5b0", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "parents" : [ "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708" ] + }, { + "catenaXId" : "urn:uuid:f72b16ff-28f6-40cc-9065-ebc022f79455", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02", + "parents" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, { + "catenaXId" : "urn:uuid:aa865787-040d-43e3-a54a-9853f3bdfb13", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:f6448ec2-dbda-41bb-9202-3b75726c93a2", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3", + "parents" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, { + "catenaXId" : "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b", + "parents" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, { + "catenaXId" : "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4", + "parents" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, { + "catenaXId" : "urn:uuid:16cc0157-a0ff-4389-b69f-07b6fe3c9a73", + "parents" : [ "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c" ] + }, { + "catenaXId" : "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba", + "parents" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, { + "catenaXId" : "urn:uuid:e9650b24-b4d0-4f74-be57-4bc9fa2fc45f", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9", + "parents" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:45bbe2ee-d1b2-41be-b0af-62b5214c80ae", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:c91e18fb-c0f8-4e3e-9e1b-0312f440d29d", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:885e7021-3e57-48a9-a11a-c511e8295cdc", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42", + "parents" : [ "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3" ] + }, { + "catenaXId" : "urn:uuid:59aa7cb4-44ee-4d5e-bdb1-80c5c6b50a50", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198", + "parents" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, { + "catenaXId" : "urn:uuid:ccba0f39-9b7a-44d2-adac-b5999b334fc6", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361", + "parents" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, { + "catenaXId" : "urn:uuid:2a01a085-1f75-49a4-a5ad-5d9a707b7949", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:8fd95749-ee76-450b-b737-1d699d1f29d4", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:14e7fe6d-3d8c-4aa7-a3e2-8b337327f7fa", + "parents" : [ "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91" ] + }, { + "catenaXId" : "urn:uuid:033f55de-e138-4378-9a01-53bad39c8b2f", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5", + "parents" : [ "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9" ] + }, { + "catenaXId" : "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2", + "parents" : [ "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210" ] + }, { + "catenaXId" : "urn:uuid:a1ec5b43-5f4c-459e-80e3-195a97a10e44", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5", + "parents" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, { + "catenaXId" : "urn:uuid:0d949893-55cc-4100-a1ce-55f298037fff", + "parents" : [ "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2" ] + }, { + "catenaXId" : "urn:uuid:bf82fc98-ed33-4cf0-aa4c-f908582b8c9f", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3", + "parents" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:968aa73a-7656-422b-baa5-372cdeb3553d", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd", + "parents" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, { + "catenaXId" : "urn:uuid:a67280e2-c1fc-4e44-a859-5ea90e499eb5", + "parents" : [ "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3" ] + }, { + "catenaXId" : "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b", + "parents" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, { + "catenaXId" : "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2", + "parents" : [ "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666", + "parents" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, { + "catenaXId" : "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe", + "parents" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, { + "catenaXId" : "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3", + "parents" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:4f06424c-1a54-4d2f-9f9c-837ec10d9b61", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681", + "parents" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5", + "parents" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, { + "catenaXId" : "urn:uuid:d17d3101-f0f3-4cce-8369-9341a029b05c", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:a112ccd8-1476-455d-936b-783b951667ec", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:688e3a45-596a-4f5d-b5ac-cba79e2843ee", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975", + "parents" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:abac29c4-d3b3-4a43-96ea-cabb18a93478", + "parents" : [ "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78" ] + }, { + "catenaXId" : "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768", + "parents" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, { + "catenaXId" : "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130", + "parents" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, { + "catenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a", + "parents" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "parents" : [ "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7" ] + }, { + "catenaXId" : "urn:uuid:668e9794-48a0-4b56-b529-fbece2b969ac", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09", + "parents" : [ "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38" ] + }, { + "catenaXId" : "urn:uuid:40f7d165-0b3e-4426-8957-60444ae24d4d", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, { + "catenaXId" : "urn:uuid:eb1de933-0041-4a9b-943f-8d9383c913dc", + "parents" : [ "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d" ] + }, { + "catenaXId" : "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b", + "parents" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, { + "catenaXId" : "urn:uuid:de905fdb-49cf-4633-a086-115f9bfdf546", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458", + "parents" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, { + "catenaXId" : "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1", + "parents" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:ed442b9d-34bd-4a2e-9432-42a18d3ebcc9", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:6787e020-5152-4591-8038-8ff1b6ea6c28", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d", + "parents" : [ "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0" ] + }, { + "catenaXId" : "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412", + "parents" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:d8625fe5-1d40-4750-8676-9b30be158db8", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4", + "parents" : [ "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab" ] + }, { + "catenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb", + "parents" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, { + "catenaXId" : "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5", + "parents" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:ae9beb58-afb3-49f3-897b-17dff3784741", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0", + "parents" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, { + "catenaXId" : "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6", + "parents" : [ "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf" ] + }, { + "catenaXId" : "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2", + "parents" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, { + "catenaXId" : "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1", + "parents" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, { + "catenaXId" : "urn:uuid:06accb9d-6328-4796-a51d-2771ec5a3d41", + "parents" : [ "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517" ] + }, { + "catenaXId" : "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4", + "parents" : [ "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2" ] + }, { + "catenaXId" : "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9", + "parents" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, { + "catenaXId" : "urn:uuid:8b023fc8-a9fb-40c0-8fb1-79b3347a751f", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:de28a7b9-0e01-4d7d-8e10-b4eed42cf480", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b", + "parents" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, { + "catenaXId" : "urn:uuid:e8140097-8115-450d-96c4-f2c45c26f68c", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:e825d9e7-c24d-4340-a565-b17f64c685f4", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2", + "parents" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, { + "catenaXId" : "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a", + "parents" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, { + "catenaXId" : "urn:uuid:bba31f8d-66b6-4286-9f52-f44940513676", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:3ffab5d9-bf36-4caa-92cb-0df0990bd1d4", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6", + "parents" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, { + "catenaXId" : "urn:uuid:5e804f47-4831-414c-96db-43fa1438174c", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:0fd22046-c195-496e-8a49-e991e9f698bc", + "parents" : [ "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695" ] + }, { + "catenaXId" : "urn:uuid:a7600f88-d1d0-478a-a174-8e7ab14033e4", + "parents" : [ "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702" ] + }, { + "catenaXId" : "urn:uuid:6107dd30-028b-4369-b938-8d932e650440", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426", + "parents" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, { + "catenaXId" : "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f", + "parents" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, { + "catenaXId" : "urn:uuid:9f9502b7-1ac3-441a-affc-1b4b00943463", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:a549669c-6709-4956-b9c8-a5b708d1873b", + "parents" : [ "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a" ] + }, { + "catenaXId" : "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2", + "parents" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, { + "catenaXId" : "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf", + "parents" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, { + "catenaXId" : "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08", + "parents" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846", + "parents" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, { + "catenaXId" : "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f", + "parents" : [ "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281", + "parents" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, { + "catenaXId" : "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94", + "parents" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad" ] + }, { + "catenaXId" : "urn:uuid:665c9779-2a5a-4b44-8e0a-91c276fde8e3", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac", + "parents" : [ "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:79de6b05-836e-4538-80c7-d3416e136525", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377", + "parents" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, { + "catenaXId" : "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b", + "parents" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, { + "catenaXId" : "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3", + "parents" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, { + "catenaXId" : "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72", + "parents" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, { + "catenaXId" : "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718", + "parents" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf", + "parents" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, { + "catenaXId" : "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3", + "parents" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, { + "catenaXId" : "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927", + "parents" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, { + "catenaXId" : "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c", + "parents" : [ "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34" ] + }, { + "catenaXId" : "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6", + "parents" : [ "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "parents" : [ "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60" ] + }, { + "catenaXId" : "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c", + "parents" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, { + "catenaXId" : "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c", + "parents" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, { + "catenaXId" : "urn:uuid:b88bfa26-d67a-4a06-a117-aaa5581fe5ec", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:6f2f87ab-4d50-4f1e-a7c2-10b7ee8ebfed", + "parents" : [ "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb" ] + }, { + "catenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "parents" : [ "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708" ] + }, { + "catenaXId" : "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052", + "parents" : [ "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268" ] + }, { + "catenaXId" : "urn:uuid:ead7804f-3730-4d37-858c-921a55ef35be", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df", + "parents" : [ "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b", + "parents" : [ "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733" ] + }, { + "catenaXId" : "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15", + "parents" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:12340fac-5386-4166-b2a4-3d8103093ed6", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:69b3a1a8-508b-46a7-b75c-132d044f840d", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:5f9c88c5-9c38-4311-bdca-6f1a6d48b606", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7", + "parents" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, { + "catenaXId" : "urn:uuid:bb7082c5-b613-4cd2-888d-102dceea0c70", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:7b121950-7ab3-4599-adc2-91a900802d8a", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:c9a05628-d711-4929-b353-f62e7b96ef87", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:e12a9218-dc05-4a63-9325-e83a5e59b54a", + "parents" : [ "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c" ] + }, { + "catenaXId" : "urn:uuid:cd2e4d05-7d85-4216-9303-8061926c4b9d", + "parents" : [ "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7" ] + }, { + "catenaXId" : "urn:uuid:05fd5901-137d-4dcf-a66c-9f15a04dad70", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:62ba1615-9416-4c49-84e3-cfff34291535", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e", + "parents" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, { + "catenaXId" : "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d", + "parents" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, { + "catenaXId" : "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3", + "parents" : [ "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51" ] + }, { + "catenaXId" : "urn:uuid:61b24ad9-5b6a-4bf2-ab7a-92dce0c301e5", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, { + "catenaXId" : "urn:uuid:2168f746-6be1-477a-a66f-fa85ebc1fe7c", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0", + "parents" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, { + "catenaXId" : "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2", + "parents" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, { + "catenaXId" : "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577", + "parents" : [ "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5" ] + }, { + "catenaXId" : "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136", + "parents" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, { + "catenaXId" : "urn:uuid:afa8cca0-dafb-4888-bb85-3043a546fca9", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, { + "catenaXId" : "urn:uuid:24faab64-718d-479b-913d-9808f3972c07", + "parents" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, { + "catenaXId" : "urn:uuid:e444388d-76ea-446a-8da3-96c7fd711bb7", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:e59b2f5a-51c6-4abf-90f5-c026cc395c56", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:d6ae50cd-4b04-4e6b-8ed2-8f0a8f38cec2", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:c65c1a00-c32a-451a-87dc-24ba8de0befc", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:0616a8dc-f7ab-468b-b472-429b8287b73b", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:60c64b92-2e36-4aa6-8b99-c2de8ac6eae1", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043", + "parents" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, { + "catenaXId" : "urn:uuid:485f6756-9cf9-46c0-b320-17e88823c87f", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe", + "parents" : [ "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755" ] + }, { + "catenaXId" : "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:8b401c1e-8249-4408-be4b-c498ce365201", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1", + "parents" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, { + "catenaXId" : "urn:uuid:dbe29e2e-2b18-4a0d-892b-9232ad4efea4", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:343db4cb-9d4f-4bf5-8baa-810e04462af0", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be", + "parents" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, { + "catenaXId" : "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad", + "parents" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, { + "catenaXId" : "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a", + "parents" : [ "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a" ] + }, { + "catenaXId" : "urn:uuid:b5419e41-d580-4f99-bf28-fd9b68c56239", + "parents" : [ "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4" ] + }, { + "catenaXId" : "urn:uuid:eb6d2a12-e1dd-4a5b-8583-3d21e863193b", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:21d496fa-addc-4c70-87bc-54f1018815ea", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5", + "parents" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7", + "parents" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, { + "catenaXId" : "urn:uuid:da329e19-8217-4394-b1df-8956956c3e98", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:8924be06-7765-4106-b7d0-b2d73c67c382", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:79da6a80-19a0-4552-b5bd-754416af6242", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b", + "parents" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, { + "catenaXId" : "urn:uuid:7d59adfd-589e-4a97-9348-6ec48fd6aabf", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d", + "parents" : [ "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e" ] + }, { + "catenaXId" : "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631", + "parents" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, { + "catenaXId" : "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:71bb4972-744c-44ca-89c6-d97648cf5313", + "parents" : [ "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2" ] + }, { + "catenaXId" : "urn:uuid:a6be9b66-3bfc-4711-8cff-cd5054aeab62", + "parents" : [ "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4" ] + }, { + "catenaXId" : "urn:uuid:4eb9cad5-9013-44bc-ac73-59d54158ed31", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c", + "parents" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:62c185e0-ab65-4129-bafb-9a7218c23612", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39", + "parents" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, { + "catenaXId" : "urn:uuid:559b6e4d-5537-422f-ac8a-0f92e824a3f2", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:e3eed488-e631-424b-88a2-668dfe223a26", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4", + "parents" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8" ] + }, { + "catenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:d151ceb5-bcd9-4fd2-ba6f-559f718b2451", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:92082020-c30e-4a2a-99b5-6e1f4e10e7c1", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228", + "parents" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, { + "catenaXId" : "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d", + "parents" : [ "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503", + "parents" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, { + "catenaXId" : "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe", + "parents" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, { + "catenaXId" : "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c", + "parents" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a" ] + }, { + "catenaXId" : "urn:uuid:fb5e67c6-6b03-4bf6-bb6b-29ba5c1cbddb", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:b8c4a37d-0e14-4f6c-8d93-254edc742d7d", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:deed575e-59df-4d77-94b1-0c2e4a3bf15e", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6", + "parents" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, { + "catenaXId" : "urn:uuid:e49a69f9-470a-4356-aab3-d7f7d52967a5", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24", + "parents" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262", + "parents" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, { + "catenaXId" : "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2", + "parents" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, { + "catenaXId" : "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5", + "parents" : [ "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e" ] + }, { + "catenaXId" : "urn:uuid:ea5510e8-4b25-4c48-b3f4-6be402539e07", + "parents" : [ "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2" ] + }, { + "catenaXId" : "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32", + "parents" : [ "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa" ] + }, { + "catenaXId" : "urn:uuid:67c9205b-39c9-4870-a9a2-68a085d6fd84", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "parents" : [ "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8" ] + }, { + "catenaXId" : "urn:uuid:ceb13138-262c-48b3-8236-419ddbdf6b45", + "parents" : [ "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38" ] + }, { + "catenaXId" : "urn:uuid:659d4f63-4f3a-42d6-a529-99b5d29c19b6", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7", + "parents" : [ "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8" ] + }, { + "catenaXId" : "urn:uuid:16df227f-0def-4ea5-b0ef-1bf122093c5e", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42", + "parents" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, { + "catenaXId" : "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6", + "parents" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, { + "catenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:e71885f8-497c-4e37-af9f-6315c9f9817a", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:3ad6542d-c83e-4250-b3e3-bcfd52c2a0ac", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591", + "parents" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252" ] + }, { + "catenaXId" : "urn:uuid:4c48949d-41de-44c9-a3d3-8bb174ac66fa", + "parents" : [ "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60" ] + }, { + "catenaXId" : "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d", + "parents" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, { + "catenaXId" : "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:d3b1ba5d-f1d1-4fa7-8f4b-34f650886aba", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "parents" : [ "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8" ] + }, { + "catenaXId" : "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18", + "parents" : [ "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364" ] + }, { + "catenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "parents" : [ "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba" ] + }, { + "catenaXId" : "urn:uuid:bfa5bc25-e7d3-41b3-9af7-9ba085fed120", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8", + "parents" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, { + "catenaXId" : "urn:uuid:d93f6a9d-49c7-4297-82ff-280bddb3e41e", + "parents" : [ "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a" ] + }, { + "catenaXId" : "urn:uuid:a6fcd120-5d1d-4262-ab0a-7927e118d1b6", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c", + "parents" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, { + "catenaXId" : "urn:uuid:be628c13-7180-4df2-aaa0-a4d2d7bb86a9", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:e70e47c9-7e9f-4b2f-84c2-981bcb1a715d", + "parents" : [ "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d" ] + }, { + "catenaXId" : "urn:uuid:e58a0fd7-9a83-4027-8bb1-e028d2aa67cb", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:32b09ff1-37c4-4d03-a5f0-25fe0dabbfe7", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51", + "parents" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d", + "parents" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:ca19e348-1f4e-45c6-a08f-00673fe0deab", + "parents" : [ "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b" ] + }, { + "catenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "parents" : [ "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a" ] + }, { + "catenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", + "parents" : [ "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b" ] + }, { + "catenaXId" : "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225", + "parents" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, { + "catenaXId" : "urn:uuid:e39c0c6e-bd76-4a2e-8187-e5357ba0b00e", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41", + "parents" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26" ] + }, { + "catenaXId" : "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7", + "parents" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, { + "catenaXId" : "urn:uuid:f3c6a1f1-1c90-45b7-be94-67032d24cef5", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:025d9b1d-3430-41d8-8f77-0d67c8795e8b", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92", + "parents" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, { + "catenaXId" : "urn:uuid:079509f7-9e78-45f5-b06c-cf95deea3f77", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:8d366081-5d6f-47d2-bd7b-0fa6241cb2aa", + "parents" : [ "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85" ] + }, { + "catenaXId" : "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b", + "parents" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, { + "catenaXId" : "urn:uuid:ad902944-cacd-4b87-b880-aadd4e0102fd", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc", + "parents" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, { + "catenaXId" : "urn:uuid:78b74e61-8437-4d60-ba9c-b2ee3ebc16a8", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f", + "parents" : [ "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f", + "parents" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d" ] + }, { + "catenaXId" : "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb", + "parents" : [ "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:2e0b9d50-38e6-4776-b31f-1890a3c5d79a", + "parents" : [ "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f" ] + }, { + "catenaXId" : "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd", + "parents" : [ "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc" ] + }, { + "catenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884", + "parents" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf" ] + }, { + "catenaXId" : "urn:uuid:baf381ed-0d4c-4d25-b774-2d0df1e2a05c", + "parents" : [ "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e" ] + }, { + "catenaXId" : "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448", + "parents" : [ "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6" ] + }, { + "catenaXId" : "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9", + "parents" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, { + "catenaXId" : "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b", + "parents" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, { + "catenaXId" : "urn:uuid:8ebaba35-4210-4ae8-aaef-8967610ccbc5", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e", + "parents" : [ "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695" ] + }, { + "catenaXId" : "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d", + "parents" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17" ] + }, { + "catenaXId" : "urn:uuid:0cf528d2-b99f-435f-89fb-aff628cfa14f", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5", + "parents" : [ "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d" ] + }, { + "catenaXId" : "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b", + "parents" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, { + "catenaXId" : "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5", + "parents" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, { + "catenaXId" : "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86", + "parents" : [ "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:963ca520-719a-4c95-be79-966b913775b4", + "parents" : [ "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23" ] + }, { + "catenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "parents" : [ "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a" ] + }, { + "catenaXId" : "urn:uuid:835ca83e-defd-45a0-92ba-4b3bea906b26", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533", + "parents" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, { + "catenaXId" : "urn:uuid:94165d74-1014-4a92-9798-2caa308e3eec", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2", + "parents" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, { + "catenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:67708fd5-8abf-471d-8b02-4db5a179c01a", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a", + "parents" : [ "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0" ] + }, { + "catenaXId" : "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5", + "parents" : [ "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac" ] + }, { + "catenaXId" : "urn:uuid:3feea8a2-5636-409c-9759-5cbacdec1fd4", + "parents" : [ "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c" ] + }, { + "catenaXId" : "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1", + "parents" : [ "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e" ] + }, { + "catenaXId" : "urn:uuid:2672f809-93a1-41db-aa4e-e588323957a3", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "parents" : [ "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c" ] + }, { + "catenaXId" : "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c", + "parents" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e" ] + }, { + "catenaXId" : "urn:uuid:2b3b2f67-bc1e-40ae-ae4e-7c0a0e201f65", + "parents" : [ "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8" ] + }, { + "catenaXId" : "urn:uuid:08a4bc67-25d1-4d50-8791-8a16d3e2feaa", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:b9e520b1-8828-4252-9497-c5702af7d91a", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578", + "parents" : [ "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885" ] + }, { + "catenaXId" : "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc", + "parents" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, { + "catenaXId" : "urn:uuid:57e625cb-f783-411b-abb6-cbc0d478cecf", + "parents" : [ "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0" ] + }, { + "catenaXId" : "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3", + "parents" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, { + "catenaXId" : "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412", + "parents" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, { + "catenaXId" : "urn:uuid:c3653200-b5c9-499b-9fd4-d86e46882048", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62", + "parents" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, { + "catenaXId" : "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e", + "parents" : [ "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870" ] + }, { + "catenaXId" : "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad", + "parents" : [ "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4" ] + }, { + "catenaXId" : "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30", + "parents" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, { + "catenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "parents" : [ "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c" ] + }, { + "catenaXId" : "urn:uuid:d9a3c72c-290b-4e79-93e0-81a55a719371", + "parents" : [ "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431" ] + }, { + "catenaXId" : "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:da3cb6d1-2023-4dbe-bfbf-905885c70c27", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2", + "parents" : [ "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013", + "parents" : [ "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a" ] + }, { + "catenaXId" : "urn:uuid:3278f37c-36f0-413c-846b-8fba1706895b", + "parents" : [ "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934" ] + }, { + "catenaXId" : "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf", + "parents" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, { + "catenaXId" : "urn:uuid:a34728e8-50b6-42b1-9bbe-35442e0966b3", + "parents" : [ "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a" ] + }, { + "catenaXId" : "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26", + "parents" : [ "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea" ] + }, { + "catenaXId" : "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a", + "parents" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, { + "catenaXId" : "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7", + "parents" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405", + "parents" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, { + "catenaXId" : "urn:uuid:5395a124-fdbe-4abe-86f0-20d1b9d782d9", + "parents" : [ "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c" ] + }, { + "catenaXId" : "urn:uuid:65c3e3da-586b-4f03-914b-e0f479fee1d1", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:9563f6a3-d44a-42a7-8692-6c06ea802d4e", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:c576f762-533f-4a4c-abf6-ad8aa149cf15", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:9a6b6559-e6ec-4413-a3cc-381d66d5fbcc", + "parents" : [ "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63" ] + }, { + "catenaXId" : "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa", + "parents" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, { + "catenaXId" : "urn:uuid:6536c53a-2683-4e11-8875-83bd9baedfd5", + "parents" : [ "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98" ] + }, { + "catenaXId" : "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:4dacd840-bccb-45fa-be79-c6ade46fa65a", + "parents" : [ "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8" ] + }, { + "catenaXId" : "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1", + "parents" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, { + "catenaXId" : "urn:uuid:a5051b48-48a8-4697-9067-f7016b0c8421", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, { + "catenaXId" : "urn:uuid:df36bb69-4b66-4a51-aae7-6dd62aede2d8", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:c67d0cdf-d90f-4fe2-8f48-13815610bd3a", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, { + "catenaXId" : "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa", + "parents" : [ "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381" ] + }, { + "catenaXId" : "urn:uuid:e477aa4f-cea1-49d2-ac7d-70f81db9cd68", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075", + "parents" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9" ] + }, { + "catenaXId" : "urn:uuid:1308c46a-fa0d-4b23-8419-75afb8b49fdc", + "parents" : [ "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366" ] + }, { + "catenaXId" : "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8", + "parents" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, { + "catenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "parents" : [ "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708" ] + }, { + "catenaXId" : "urn:uuid:5f3253fb-1b4c-4d0d-9776-13367722f31a", + "parents" : [ "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0" ] + }, { + "catenaXId" : "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef", + "parents" : [ "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3" ] + }, { + "catenaXId" : "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a", + "parents" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, { + "catenaXId" : "urn:uuid:b3b6fdef-9fa8-485e-932d-41be74a687a8", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:c903f029-860e-4cd5-ad3d-ea3ec4ab587b", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:8f3f417f-af9b-46e8-915b-304c582abe9b", + "parents" : [ "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0" ] + }, { + "catenaXId" : "urn:uuid:09eb595f-5e15-497a-ab9a-4b1ccef5bbcc", + "parents" : [ "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d" ] + }, { + "catenaXId" : "urn:uuid:8d73533f-997d-4776-aaa4-0713511ceef9", + "parents" : [ "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f" ] + }, { + "catenaXId" : "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe", + "parents" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, { + "catenaXId" : "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4", + "parents" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, { + "catenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "parents" : [ "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7" ] + }, { + "catenaXId" : "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, { + "catenaXId" : "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba", + "parents" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, { + "catenaXId" : "urn:uuid:a7d1bed1-8565-43a2-ba45-c13447f913c0", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614", + "parents" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, { + "catenaXId" : "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997", + "parents" : [ "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99" ] + }, { + "catenaXId" : "urn:uuid:d1cca4e9-4cdd-46ae-a609-37aadabd5e88", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:199cde2c-af12-461c-baf9-295080a03022", + "parents" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486" ] + }, { + "catenaXId" : "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc", + "parents" : [ "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:78ca3a8f-80e0-4455-bef0-52b279428a52", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63", + "parents" : [ "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331" ] + }, { + "catenaXId" : "urn:uuid:609975e6-6275-4f72-a050-d6da88bb7e87", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852", + "parents" : [ "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986" ] + }, { + "catenaXId" : "urn:uuid:17f2667c-b44a-4695-a282-2fd3b460ae2c", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983", + "parents" : [ "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d" ] + }, { + "catenaXId" : "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c", + "parents" : [ "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22" ] + }, { + "catenaXId" : "urn:uuid:075f1457-728a-4fc0-b7d9-6fc088d5ba00", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d", + "parents" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2" ] + }, { + "catenaXId" : "urn:uuid:8b2dcbbd-2694-4cf6-abbb-b5d5bc36b35c", + "parents" : [ "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60" ] + }, { + "catenaXId" : "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30", + "parents" : [ "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d" ] + }, { + "catenaXId" : "urn:uuid:1fadc31f-319b-4174-882d-8726225344a7", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0", + "parents" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, { + "catenaXId" : "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d", + "parents" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, { + "catenaXId" : "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1", + "parents" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, { + "catenaXId" : "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94", + "parents" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4" ] + }, { + "catenaXId" : "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161", + "parents" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, { + "catenaXId" : "urn:uuid:57fa87d4-95b6-4a25-a267-a1797100a33f", + "parents" : [ "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679" ] + }, { + "catenaXId" : "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53", + "parents" : [ "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d" ] + }, { + "catenaXId" : "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b", + "parents" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, { + "catenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:d772c51d-cbdb-4888-918f-28c9cbb1f37b", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4", + "parents" : [ "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e" ] + }, { + "catenaXId" : "urn:uuid:09930847-5704-4e32-ab51-6165027a662b", + "parents" : [ "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da" ] + }, { + "catenaXId" : "urn:uuid:ffff3b41-c96f-4a1f-ae07-2f81a36b99b4", + "parents" : [ "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78" ] + }, { + "catenaXId" : "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847", + "parents" : [ "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66" ] + }, { + "catenaXId" : "urn:uuid:da0b0e07-d0fa-444d-b25a-4a3b96850245", + "parents" : [ "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433" ] + }, { + "catenaXId" : "urn:uuid:e75c34f3-d342-47f9-89a9-a86e51b757cc", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:fff8d480-68f6-453b-991a-34c9511b6537", + "parents" : [ "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e" ] + }, { + "catenaXId" : "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206", + "parents" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e" ] + }, { + "catenaXId" : "urn:uuid:b30292ef-5a7a-4962-ac6e-ae444f72eaa6", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:9d9a5f35-159d-4a06-91ba-dd641012cd24", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:86c6300e-f657-465b-a4fc-e4d91329edaf", + "parents" : [ "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71" ] + }, { + "catenaXId" : "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43", + "parents" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, { + "catenaXId" : "urn:uuid:ecd837d0-bbe3-4ace-a81b-0d62d3043615", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:b31969df-5274-44fc-a2f3-46eab5162718", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:d59c7866-2412-43f9-8463-2be6a8dc23bd", + "parents" : [ "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e" ] + }, { + "catenaXId" : "urn:uuid:2ac66c67-a343-4b59-baef-fd8f3b0ee2d3", + "parents" : [ "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07" ] + }, { + "catenaXId" : "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237", + "parents" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, { + "catenaXId" : "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4", + "parents" : [ "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd" ] + }, { + "catenaXId" : "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784", + "parents" : [ "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499", + "parents" : [ "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983" ] + }, { + "catenaXId" : "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9", + "parents" : [ "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d" ] + }, { + "catenaXId" : "urn:uuid:f45ea971-f663-46cd-8724-aaec2a64b1ab", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:b7e9156d-8d55-43bc-8e4b-5fbd1e5587d7", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:f550ac0d-c149-4663-878b-6b8bb53a2bf6", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:701122f8-8378-4cdd-b960-5f457b78d2c0", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:c5f253e2-f813-43c9-b889-00f78922d315", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84", + "parents" : [ "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684" ] + }, { + "catenaXId" : "urn:uuid:07c22736-3033-4645-994c-e16c603ea140", + "parents" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, { + "catenaXId" : "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7", + "parents" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, { + "catenaXId" : "urn:uuid:d684bf7c-e3c2-4f63-931c-62ca29d53432", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:43d347b0-0aa8-480f-a360-faa76f99fc44", + "parents" : [ "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0" ] + }, { + "catenaXId" : "urn:uuid:f37f2e28-7098-41f4-94a8-05a0205cd80d", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617", + "parents" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa" ] + }, { + "catenaXId" : "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859", + "parents" : [ "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b", + "parents" : [ "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597" ] + }, { + "catenaXId" : "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4", + "parents" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, { + "catenaXId" : "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a", + "parents" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278" ] + }, { + "catenaXId" : "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e", + "parents" : [ "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740" ] + }, { + "catenaXId" : "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536", + "parents" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, { + "catenaXId" : "urn:uuid:d11bea26-eefc-471b-a06e-c9669a153dd3", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f", + "parents" : [ "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300" ] + }, { + "catenaXId" : "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09", + "parents" : [ "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291" ] + }, { + "catenaXId" : "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c", + "parents" : [ "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0" ] + }, { + "catenaXId" : "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15", + "parents" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, { + "catenaXId" : "urn:uuid:19d0c853-bbc8-4e1b-ac98-ffb7d9a0c350", + "parents" : [ "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a" ] + }, { + "catenaXId" : "urn:uuid:bd7d3e9e-3f47-43ef-8378-25862a735463", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250", + "parents" : [ "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc" ] + }, { + "catenaXId" : "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8", + "parents" : [ "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a" ] + }, { + "catenaXId" : "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5", + "parents" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:b6578651-90b2-4f7b-a0bd-4370417ca074", + "parents" : [ "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a" ] + }, { + "catenaXId" : "urn:uuid:f674284b-6c1e-4c1f-acb8-494f2398a116", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095", + "parents" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, { + "catenaXId" : "urn:uuid:8f479623-98c9-4375-910c-1c41124d27d3", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395", + "parents" : [ "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418" ] + }, { + "catenaXId" : "urn:uuid:fdc2f314-5d51-4124-89fe-f3e6ca029c54", + "parents" : [ "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431" ] + }, { + "catenaXId" : "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd", + "parents" : [ "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e" ] + }, { + "catenaXId" : "urn:uuid:19e60826-4c03-4f90-9126-e5a845df998e", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:2ff36c92-b53f-4593-bdaf-eda190304add", + "parents" : [ "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb" ] + }, { + "catenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:471786de-3b08-44a6-a67f-d0866768c5ca", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef", + "parents" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, { + "catenaXId" : "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892", + "parents" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, { + "catenaXId" : "urn:uuid:7f6360cf-26bc-4b52-a6ac-24ca1f4b1633", + "parents" : [ "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d" ] + }, { + "catenaXId" : "urn:uuid:04b45fe5-58df-46b8-ac71-09022a6d0a23", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703", + "parents" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, { + "catenaXId" : "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99", + "parents" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, { + "catenaXId" : "urn:uuid:6b85b137-39a2-44fe-b65e-bb4d911ffdcd", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:54917f36-30a9-425b-b7ef-325d1e67dfb2", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:f0304a0d-6a03-4c44-b433-a0c0235438e4", + "parents" : [ "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937" ] + }, { + "catenaXId" : "urn:uuid:8feb8396-e23f-40ec-ad31-a6446e7006e1", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:18fc5f13-ae4c-4dcf-9a0d-ca8897ead240", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4", + "parents" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97", + "parents" : [ "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465", + "parents" : [ "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e" ] + }, { + "catenaXId" : "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e", + "parents" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, { + "catenaXId" : "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60", + "parents" : [ "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879" ] + }, { + "catenaXId" : "urn:uuid:bd46b5d5-5000-49eb-aee8-4a5f54d676ba", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7", + "parents" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, { + "catenaXId" : "urn:uuid:03958eb2-501d-4356-a03e-e85da90c1f92", + "parents" : [ "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb" ] + }, { + "catenaXId" : "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7", + "parents" : [ "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a" ] + }, { + "catenaXId" : "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557", + "parents" : [ "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf" ] + }, { + "catenaXId" : "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7", + "parents" : [ "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d" ] + }, { + "catenaXId" : "urn:uuid:16644601-04b0-4dd4-8ac1-107a454af160", + "parents" : [ "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967" ] + }, { + "catenaXId" : "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269", + "parents" : [ "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab" ] + }, { + "catenaXId" : "urn:uuid:93f2009f-f928-47b8-982e-3232a0ad0727", + "parents" : [ "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd" ] + }, { + "catenaXId" : "urn:uuid:08e564be-6b51-4d79-b267-ffc0d8215f54", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15", + "parents" : [ "urn:uuid:eb71a072-875d-456a-a915-3961904222f0" ] + }, { + "catenaXId" : "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7", + "parents" : [ "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91" ] + }, { + "catenaXId" : "urn:uuid:c80cfdc9-2d97-4856-bcc8-cea1ce8f9e56", + "parents" : [ "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832" ] + }, { + "catenaXId" : "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b", + "parents" : [ "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca" ] + }, { + "catenaXId" : "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e", + "parents" : [ "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3" ] + }, { + "catenaXId" : "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7", + "parents" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7" ] + }, { + "catenaXId" : "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392", + "parents" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, { + "catenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", + "parents" : [ "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303" ] + }, { + "catenaXId" : "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037", + "parents" : [ "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:635bf5c7-0df3-4543-b6dd-ba3a3813fe35", + "parents" : [ "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37" ] + }, { + "catenaXId" : "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041", + "parents" : [ "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:ba7b2ab8-707c-4fb6-af6a-2a1ef1d75337", + "parents" : [ "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f" ] + }, { + "catenaXId" : "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd", + "parents" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, { + "catenaXId" : "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91", + "parents" : [ "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f", + "parents" : [ "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375" ] + }, { + "catenaXId" : "urn:uuid:5ced3ac6-71ce-4ed7-a161-cc364d1f8179", + "parents" : [ "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946" ] + }, { + "catenaXId" : "urn:uuid:a0e69a33-4462-4a3d-8f93-d66e923a0c3a", + "parents" : [ "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c" ] + }, { + "catenaXId" : "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2", + "parents" : [ "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018" ] + }, { + "catenaXId" : "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8", + "parents" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f" ] + }, { + "catenaXId" : "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799", + "parents" : [ "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af" ] + }, { + "catenaXId" : "urn:uuid:abc3be81-0a25-4581-a054-5327d4744aac", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:58bc62b1-3493-47ea-8116-5583c3d9980d", + "parents" : [ "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097" ] + }, { + "catenaXId" : "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96", + "parents" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, { + "catenaXId" : "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5", + "parents" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, { + "catenaXId" : "urn:uuid:eed19a7f-6e5f-4b1b-b640-da407dbfe86b", + "parents" : [ "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a" ] + }, { + "catenaXId" : "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591", + "parents" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, { + "catenaXId" : "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc", + "parents" : [ "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6" ] + }, { + "catenaXId" : "urn:uuid:0f6b98f4-50ec-4713-94a5-f0827ebe9af9", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4", + "parents" : [ "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4" ] + }, { + "catenaXId" : "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a", + "parents" : [ "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14" ] + }, { + "catenaXId" : "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1", + "parents" : [ "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a" ] + }, { + "catenaXId" : "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14", + "parents" : [ "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836" ] + }, { + "catenaXId" : "urn:uuid:008f5710-903c-4281-ba91-0f1a5f165422", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91", + "parents" : [ "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3" ] + }, { + "catenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "parents" : [ "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291" ] + }, { + "catenaXId" : "urn:uuid:347fa75b-a32b-4579-8844-938065c04854", + "parents" : [ "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17" ] + }, { + "catenaXId" : "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e", + "parents" : [ "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653" ] + }, { + "catenaXId" : "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d", + "parents" : [ "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8" ] + }, { + "catenaXId" : "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646", + "parents" : [ "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62" ] + }, { + "catenaXId" : "urn:uuid:e178e76e-b1f2-43a9-b8ba-20ae9de8b348", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4", + "parents" : [ "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805" ] + }, { + "catenaXId" : "urn:uuid:ea1a8c53-56a2-4dd6-af09-3e722d7d85f0", + "parents" : [ "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f" ] + }, { + "catenaXId" : "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978", + "parents" : [ "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602" ] + }, { + "catenaXId" : "urn:uuid:4dfa7800-45f7-4644-85fa-ee9d1aebc326", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:d1b4a649-4e99-4494-82e0-ebb482c7ab53", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b", + "parents" : [ "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b" ] + }, { + "catenaXId" : "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194", + "parents" : [ "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a" ] + }, { + "catenaXId" : "urn:uuid:be10b948-b72a-4081-9c6c-2a0053ce0702", + "parents" : [ "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e" ] + }, { + "catenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "parents" : [ "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d" ] + }, { + "catenaXId" : "urn:uuid:a985ee5b-2d8e-427c-b67a-1db6f1b93fce", + "parents" : [ "urn:uuid:335e9821-0868-4424-9040-417db5947f5d" ] + }, { + "catenaXId" : "urn:uuid:111c2947-9d09-4a63-b114-1aa365a5ee36", + "parents" : [ "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a" ] + }, { + "catenaXId" : "urn:uuid:1342124b-9162-43c0-9285-8d24bc567c81", + "parents" : [ "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37" ] + }, { + "catenaXId" : "urn:uuid:8c01e174-87b8-4969-82ba-07bef629000d", + "parents" : [ "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134" ] + }, { + "catenaXId" : "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9", + "parents" : [ "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4" ] + }, { + "catenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "parents" : [ "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf" ] + }, { + "catenaXId" : "urn:uuid:e84403f3-5c13-4c55-aff2-dddc4c20cec8", + "parents" : [ "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc" ] + }, { + "catenaXId" : "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1", + "parents" : [ "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0" ] + }, { + "catenaXId" : "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830", + "parents" : [ "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b" ] + }, { + "catenaXId" : "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336", + "parents" : [ "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f" ] + }, { + "catenaXId" : "urn:uuid:07cd1020-ad97-4f80-92a5-c865b437d97a", + "parents" : [ "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5" ] + }, { + "catenaXId" : "urn:uuid:a3cddafe-8450-42c8-a225-7b4032f47e0a", + "parents" : [ "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b" ] + }, { + "catenaXId" : "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5", + "parents" : [ "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e" ] + }, { + "catenaXId" : "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82", + "parents" : [ "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419" ] + }, { + "catenaXId" : "urn:uuid:3bad2d78-e6cc-4154-a26e-fe833c42124d", + "parents" : [ "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe" ] + }, { + "catenaXId" : "urn:uuid:e064dc9c-0e0a-448c-9a72-b6c0de81f20c", + "parents" : [ "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6" ] + }, { + "catenaXId" : "urn:uuid:1aa99119-8beb-4bb5-83c4-23e59b0b5a92", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98", + "parents" : [ "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8" ] + }, { + "catenaXId" : "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7", + "parents" : [ "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990" ] + }, { + "catenaXId" : "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa", + "parents" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14" ] + }, { + "catenaXId" : "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb", + "parents" : [ "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b" ] + }, { + "catenaXId" : "urn:uuid:6b2b1c96-23b3-44bb-8a23-f43e8afda33d", + "parents" : [ "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154" ] + } ], + "onedown" : [ { + "catenaXId" : "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89", + "children" : [ "urn:uuid:f41dae33-1eab-48c5-89d7-f36f71bb4e5a" ] + }, { + "catenaXId" : "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a", + "children" : [ "urn:uuid:b40cdaac-bbb9-47a0-8f95-385689f631d2" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4", + "children" : [ "urn:uuid:d15ae90b-725f-4bbe-b8d0-ff49a56f9b3e" ] + }, { + "catenaXId" : "urn:uuid:06b1358f-a90f-4ac0-9ff7-377acaae3f34", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", + "children" : [ "urn:uuid:93f2009f-f928-47b8-982e-3232a0ad0727", "urn:uuid:d587f32d-9de1-47f4-a8ff-5a9c2a5e67f4", "urn:uuid:06b1358f-a90f-4ac0-9ff7-377acaae3f34" ] + }, { + "catenaXId" : "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366", + "children" : [ "urn:uuid:1308c46a-fa0d-4b23-8419-75afb8b49fdc" ] + }, { + "catenaXId" : "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b", + "children" : [ "urn:uuid:4d1fae8a-173a-40bb-ade9-642f43771477", "urn:uuid:8ae3b3b8-ca84-4115-adf3-54b179603366", "urn:uuid:51f25dea-fcf6-4a4c-869e-c0d8ab411267" ] + }, { + "catenaXId" : "urn:uuid:6ce41c0b-c84a-46b0-b4c4-78fce958663f", + "children" : [ "urn:uuid:b98b10d1-ea70-47f9-b30c-520f12594519", "urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a", "urn:uuid:8ebaba35-4210-4ae8-aaef-8967610ccbc5", "urn:uuid:2fa58d7b-ec4b-4647-96d6-932cc62c596d", "urn:uuid:5e8910cc-cd76-4863-9fd4-4ddaadd32c89", "urn:uuid:ff5fd6a2-8e9a-4bd2-a67c-bab927597b5a", "urn:uuid:9e3287f0-0449-4cec-bf92-1c8ddafd1dce", "urn:uuid:7697dd1a-a013-4daa-a266-b63e8b295a9d", "urn:uuid:978aa1e7-89e9-4f4a-a07d-945bff5c9ac8", "urn:uuid:ff194113-c981-4ff1-bd3e-39bdef41f010", "urn:uuid:ba7b2ab8-707c-4fb6-af6a-2a1ef1d75337", "urn:uuid:258cb46c-f178-462a-9e6b-da58be4ac64b", "urn:uuid:b9e520b1-8828-4252-9497-c5702af7d91a", "urn:uuid:230ff3d7-155e-478f-a05e-b3b21cb443ba", "urn:uuid:38578eb7-3dd5-4b8c-bdfb-a9c0bb725e09", "urn:uuid:67a51fd6-fec4-4101-abee-20d4014f5945", "urn:uuid:e39c0c6e-bd76-4a2e-8187-e5357ba0b00e", "urn:uuid:f7c175ce-00a2-4650-bbae-b6db2669113c", "urn:uuid:7d59adfd-589e-4a97-9348-6ec48fd6aabf", "urn:uuid:6789d12f-44fb-4616-bda4-343499e3aee6", "urn:uuid:62a1673c-ec20-40bf-9c63-59e5853832a4", "urn:uuid:0d50b9c8-a354-4155-ab02-d58b22852512", "urn:uuid:8fd95749-ee76-450b-b737-1d699d1f29d4", "urn:uuid:0f19d6ea-7042-4cf3-9b52-2e532ff96089", "urn:uuid:e444388d-76ea-446a-8da3-96c7fd711bb7", "urn:uuid:c903f029-860e-4cd5-ad3d-ea3ec4ab587b", "urn:uuid:47b5f5ed-1bf6-46ba-899e-c19f7f62e682", "urn:uuid:48299545-a673-467a-a341-f4337dd1ae00", "urn:uuid:075f1457-728a-4fc0-b7d9-6fc088d5ba00", "urn:uuid:5a66c091-5082-4047-b775-3d712a52c632", "urn:uuid:4123cd33-ab15-421d-a950-a7519bbaf37b", "urn:uuid:7c548fd4-6428-42e5-88cb-2088bccf5c84", "urn:uuid:40e21864-ac54-43e1-98ac-9acfddb42ddd", "urn:uuid:e93577b0-9f9c-4e98-b7e9-25f71f17fc6b" ] + }, { + "catenaXId" : "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2", + "children" : [ "urn:uuid:fc164ede-a193-4066-b2c1-3293a7e16be0" ] + }, { + "catenaXId" : "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b", + "children" : [ "urn:uuid:576ef77c-432e-4494-bbdf-553e74a9e536" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde", + "children" : [ "urn:uuid:abce35f9-22c7-4a3b-b897-6f866a8039b7" ] + }, { + "catenaXId" : "urn:uuid:13931e36-2319-4c18-896d-c99ac9fd5b9f", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", + "children" : [ "urn:uuid:9a852ada-7d42-4a85-8a19-300503e234ae", "urn:uuid:2c74b701-0d31-4977-be94-42aae3b1ccde", "urn:uuid:13931e36-2319-4c18-896d-c99ac9fd5b9f" ] + }, { + "catenaXId" : "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842", + "children" : [ "urn:uuid:e8edf987-db8c-4dd7-b233-6d8ad2e253cd" ] + }, { + "catenaXId" : "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4", + "children" : [ "urn:uuid:a8c0d550-59c4-40e7-9c0e-dc1b87ec80b1", "urn:uuid:5cb3cd5c-35a3-4096-b845-76d1b2eec842", "urn:uuid:a097b02d-2f66-4038-8d30-b9347da7a562" ] + }, { + "catenaXId" : "urn:uuid:d70b0211-7f09-4ab6-9ef3-966f49eca90b", + "children" : [ "urn:uuid:75ee7c7e-70d0-4c99-9a82-2df875e938f6", "urn:uuid:d772c51d-cbdb-4888-918f-28c9cbb1f37b", "urn:uuid:029e6770-4e88-48f1-8efd-2e6d69e79b0b", "urn:uuid:1f105134-f21d-4892-b0b1-167df2e074da", "urn:uuid:8219a468-ccb0-43fa-9eb3-0213ff1e14b2", "urn:uuid:cee1d872-095d-4c80-8cb3-d0f739ce4a8b", "urn:uuid:6d7e3917-7613-4003-b4f0-7a706f5fd701", "urn:uuid:a3cddafe-8450-42c8-a225-7b4032f47e0a", "urn:uuid:fb4236e9-2c5e-418d-95ae-17845860173a", "urn:uuid:a7d1bed1-8565-43a2-ba45-c13447f913c0", "urn:uuid:26f0a614-fb20-410e-b698-03f32d7994a2", "urn:uuid:bb7082c5-b613-4cd2-888d-102dceea0c70", "urn:uuid:c67d0cdf-d90f-4fe2-8f48-13815610bd3a", "urn:uuid:6052e6f6-1f4c-42e6-9d12-c424dee2b75b", "urn:uuid:8be87615-0bb8-4521-84b7-1558c4e96fc8", "urn:uuid:d1f5e786-2764-4304-b94e-5d42ff35c166", "urn:uuid:84e3a802-1774-43b4-b26f-ec61558fc50d", "urn:uuid:818dd9aa-57f0-4a52-84ac-5496ba9b6000", "urn:uuid:073ab468-b915-449a-a461-de7ed1d16335", "urn:uuid:05d9435d-b88a-4722-802f-a58d3d7d384f", "urn:uuid:d1b4a649-4e99-4494-82e0-ebb482c7ab53", "urn:uuid:b4df5b9f-da07-4f02-bb57-4cbd5ca6dde6", "urn:uuid:42ada632-1346-4dc8-ae8d-1094c958804b", "urn:uuid:d236fe63-5c46-49ff-aa4d-4ce200239936", "urn:uuid:6cba1b97-cb3e-498c-b0cb-15a3694c7693", "urn:uuid:75cbd7f7-16c1-4ff5-b911-56cef45f736f", "urn:uuid:cf37547a-fbc5-44f5-84bc-206a6193e5e0", "urn:uuid:df36bb69-4b66-4a51-aae7-6dd62aede2d8", "urn:uuid:559b6e4d-5537-422f-ac8a-0f92e824a3f2", "urn:uuid:7961eae5-8c87-43c9-84ac-b2ba32435317", "urn:uuid:5fdd6b9a-dca1-4d85-ab50-36358ee3b889", "urn:uuid:079509f7-9e78-45f5-b06c-cf95deea3f77", "urn:uuid:cce2c864-0e42-4695-ba16-e34fa092906b", "urn:uuid:646ac5cf-1d03-407d-8500-ec3de4a79db4" ] + }, { + "catenaXId" : "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea", + "children" : [ "urn:uuid:52a568c3-8d0c-4b67-b197-7e9e9a42b4e8" ] + }, { + "catenaXId" : "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45", + "children" : [ "urn:uuid:48031b61-e174-4de6-8f74-03d2d7da2b01" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052", + "children" : [ "urn:uuid:f36e139a-125a-4956-a0c8-fdbcdd30bb09" ] + }, { + "catenaXId" : "urn:uuid:a5a97c77-a736-4c80-b8c6-21a1155fde6c", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", + "children" : [ "urn:uuid:e7de1d4d-9a25-4961-8620-ae04bdc6cbcd", "urn:uuid:b134ea05-5b7e-45c5-9819-f5861e557052", "urn:uuid:a5a97c77-a736-4c80-b8c6-21a1155fde6c" ] + }, { + "catenaXId" : "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8", + "children" : [ "urn:uuid:4aa12612-8cff-4de0-81ac-4eeca63157e9" ] + }, { + "catenaXId" : "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a", + "children" : [ "urn:uuid:a34728e8-50b6-42b1-9bbe-35442e0966b3", "urn:uuid:7e043abd-d073-4223-bd08-c9683d5f56c8", "urn:uuid:d93f6a9d-49c7-4297-82ff-280bddb3e41e" ] + }, { + "catenaXId" : "urn:uuid:c70062cf-1eb1-4d20-a5e7-abc29b50f00e", + "children" : [ "urn:uuid:f4c26c34-47f8-498d-9565-2439c79bf287", "urn:uuid:be10b948-b72a-4081-9c6c-2a0053ce0702", "urn:uuid:2f3116a0-2c5f-4d87-b086-a27d0257be26", "urn:uuid:77d74d4b-81cc-40f6-bc15-09939b0132f3", "urn:uuid:301bbe10-9b18-4804-b52d-94d637994eea", "urn:uuid:b63f5ebb-98f5-4726-902c-64111a9c2c45", "urn:uuid:4435f4f5-149a-4868-a044-76dce092d4ff", "urn:uuid:1c683f18-5b01-42e2-b78f-afd03581dfc1", "urn:uuid:3d9d7b27-839e-48b5-9453-111c9281274e", "urn:uuid:986d7a11-a852-4aa0-8624-d0b83f8a6eca", "urn:uuid:11990aba-ca76-4d91-a45a-e388f169e7dc", "urn:uuid:0c1f5873-9464-41fd-b935-ba657603c2b1", "urn:uuid:49279f9e-e262-4825-99de-b3e86140b9eb", "urn:uuid:485f6756-9cf9-46c0-b320-17e88823c87f", "urn:uuid:17f2667c-b44a-4695-a282-2fd3b460ae2c", "urn:uuid:c91e18fb-c0f8-4e3e-9e1b-0312f440d29d", "urn:uuid:e5d7dc94-c823-4581-8623-cd5513879197", "urn:uuid:885e7021-3e57-48a9-a11a-c511e8295cdc", "urn:uuid:ae0ffb80-d877-4320-8acc-7be7cf64955d", "urn:uuid:e74641a6-fa74-497a-8819-70fc58a38122", "urn:uuid:f3c6a1f1-1c90-45b7-be94-67032d24cef5", "urn:uuid:22d80cc9-f9dd-40b1-a4e7-5fd23f987c9a", "urn:uuid:7d31f16b-1a0b-4e11-9a07-00c75e8d5bb6", "urn:uuid:8406fdf7-3dfb-44d6-b607-a5457ef09869", "urn:uuid:560c7ebb-6fa6-42cc-b28c-e82e68b65fd6", "urn:uuid:0984aed2-c565-443f-aea0-58cff1175b77", "urn:uuid:7afb4a8e-bb54-4c4a-abae-567e5ef71821", "urn:uuid:614a3051-8769-44a0-b255-cbde33923604", "urn:uuid:f6448ec2-dbda-41bb-9202-3b75726c93a2", "urn:uuid:16609a10-6e4a-4720-8c02-26d85f7d84fc", "urn:uuid:6e687f1d-71ea-43b2-8f80-7121c0b3353f", "urn:uuid:07407037-cffe-4412-b397-b8e87bd33594", "urn:uuid:7e88bc9f-c4de-40ed-acca-b9029da82268", "urn:uuid:a63cf59e-aff7-4805-b515-cb26e5ae5e7a" ] + }, { + "catenaXId" : "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe", + "children" : [ "urn:uuid:3bad2d78-e6cc-4154-a26e-fe833c42124d" ] + }, { + "catenaXId" : "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0", + "children" : [ "urn:uuid:53eca8e7-8031-4220-a6b8-f927f0364fe8" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6", + "children" : [ "urn:uuid:880bcd50-5863-40bc-a783-923ea1a463ee" ] + }, { + "catenaXId" : "urn:uuid:7a115f4e-eec1-4eff-aeda-64bf13fdb33d", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", + "children" : [ "urn:uuid:67243366-b385-4dce-94e3-b50cf732e9f2", "urn:uuid:ff29454c-e416-48d6-9df2-d439c7cf20f6", "urn:uuid:7a115f4e-eec1-4eff-aeda-64bf13fdb33d" ] + }, { + "catenaXId" : "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b", + "children" : [ "urn:uuid:730a4154-b1a9-4931-bc5b-b6dc52556ced" ] + }, { + "catenaXId" : "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202", + "children" : [ "urn:uuid:6752c819-cf99-42fe-adc0-cfad0902850f", "urn:uuid:9dac5cbc-df64-40a8-9e18-283529f2b61b", "urn:uuid:facb06ab-db55-41c6-b75e-eafb719641cf" ] + }, { + "catenaXId" : "urn:uuid:5db316f4-0b38-4c0a-a933-ab85204e44bb", + "children" : [ "urn:uuid:de905fdb-49cf-4633-a086-115f9bfdf546", "urn:uuid:914b436b-c1c4-4ebd-b414-373525c53f9a", "urn:uuid:a1e6f72d-485d-46d5-ad10-e73e8a303a73", "urn:uuid:82a0364b-d70a-4824-bc33-59acde5b15bd", "urn:uuid:71d8db48-ac84-4826-84c4-11ba91fc5efe", "urn:uuid:39cf7284-fdd8-406b-a009-3414cc9c4eb0", "urn:uuid:b94ee658-c50b-44fc-92bb-a33738556a47", "urn:uuid:b1d5d81e-f9fb-424a-aae8-e6a4efc5bc86", "urn:uuid:00e7cc1c-3ae1-447f-8136-878c1d218a4d", "urn:uuid:19e60826-4c03-4f90-9126-e5a845df998e", "urn:uuid:2dc8c038-beb4-40d0-bb98-5db46f3ff9c6", "urn:uuid:facfe7b9-d60d-422a-a02f-0e62d5cb53fe", "urn:uuid:f45ea971-f663-46cd-8724-aaec2a64b1ab", "urn:uuid:2ff36c92-b53f-4593-bdaf-eda190304add", "urn:uuid:6b33bddf-efee-4765-8860-5efd70e0a200", "urn:uuid:8e40ffda-4ed9-4610-8547-6f802637a831", "urn:uuid:ba7728a1-dea2-4c3e-99a6-1ad23a14b6b8", "urn:uuid:f72b16ff-28f6-40cc-9065-ebc022f79455", "urn:uuid:143d4048-6f5e-409d-931b-e6e2c530e261", "urn:uuid:6da731cd-dba9-460d-8112-c28469b849ce", "urn:uuid:6f067dc2-6915-4b23-9706-e796e718461f", "urn:uuid:643ebb6a-62ad-4061-8172-e3fa0488bff1", "urn:uuid:235345aa-4748-431a-b051-ca43c76bde73", "urn:uuid:1791d4f5-134a-4083-9e1b-322f1a09a459", "urn:uuid:1801af6f-1f32-4aa9-b8c6-a4fa4654126b", "urn:uuid:1b44b453-de0a-4ba5-a0c1-348cf1eb7253", "urn:uuid:6b89263b-0d25-4f72-9af7-238a2a02c179", "urn:uuid:e8eb41ce-6d94-45c9-8a11-5b2d4cdaab66", "urn:uuid:fca4d2b3-69d5-487d-8eff-cec7402382c8", "urn:uuid:84fe981f-2696-4bf4-9e14-ca0d86b40fbc", "urn:uuid:1073432c-3eb4-40e0-91fd-dc41b7c4d7c0", "urn:uuid:175e94c0-dcda-465b-a896-81a2a9b28262", "urn:uuid:516560c2-c7a2-4161-803d-e36d4e968629", "urn:uuid:219b799d-e508-436b-b7d4-237031cdf202" ] + }, { + "catenaXId" : "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020", + "children" : [ "urn:uuid:7625422f-9504-4525-96c4-902cf81613e3" ] + }, { + "catenaXId" : "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7", + "children" : [ "urn:uuid:66980e76-b79b-4fcf-9111-5b56261d42bb" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9", + "children" : [ "urn:uuid:a2f52182-a9eb-414d-a3ab-35e9724fc75b" ] + }, { + "catenaXId" : "urn:uuid:eb1de933-0041-4a9b-943f-8d9383c913dc", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", + "children" : [ "urn:uuid:09eb595f-5e15-497a-ab9a-4b1ccef5bbcc", "urn:uuid:d5b90624-e0cb-4b30-a307-28cf1f73c6c9", "urn:uuid:eb1de933-0041-4a9b-943f-8d9383c913dc" ] + }, { + "catenaXId" : "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5", + "children" : [ "urn:uuid:8b808b9d-6e56-4a16-b523-95ee1596d97d" ] + }, { + "catenaXId" : "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d", + "children" : [ "urn:uuid:7f6360cf-26bc-4b52-a6ac-24ca1f4b1633", "urn:uuid:861fd784-7c99-4a97-8838-6d2881ff1dd5", "urn:uuid:669ac9ac-af10-494e-8512-a43230da6f7a" ] + }, { + "catenaXId" : "urn:uuid:1b17682e-5e2a-4913-aa1b-7d59a072a3cb", + "children" : [ "urn:uuid:f449ed2f-92cf-40ce-a5b8-e6098ae5bb52", "urn:uuid:57850083-6bc9-4a83-b3d3-ca72d4420d07", "urn:uuid:736ca592-a0b0-4394-b538-f251a4224125", "urn:uuid:3a49690c-8af4-458a-bd37-0fa5a0519d0f", "urn:uuid:fbbb255c-d02f-4d6a-8851-dd00130ed020", "urn:uuid:7d17ab0d-d879-4bae-bada-c65adf834dc7", "urn:uuid:4079114c-10d4-42dc-8de5-7637698c2ad8", "urn:uuid:28aeca09-a251-4629-820d-eb047addc9c7", "urn:uuid:a112ccd8-1476-455d-936b-783b951667ec", "urn:uuid:540c139b-826e-458e-a536-d6a6d3d01d5e", "urn:uuid:03958eb2-501d-4356-a03e-e85da90c1f92", "urn:uuid:bfa5bc25-e7d3-41b3-9af7-9ba085fed120", "urn:uuid:18fc5f13-ae4c-4dcf-9a0d-ca8897ead240", "urn:uuid:979818ab-6f5d-42d9-84aa-5fcbf69a06aa", "urn:uuid:bdb24ca0-906c-42f8-8be1-82f4411cc501", "urn:uuid:c5f253e2-f813-43c9-b889-00f78922d315", "urn:uuid:00c8de5a-b6bd-4061-88c1-2484ea3d3090", "urn:uuid:3ad6542d-c83e-4250-b3e3-bcfd52c2a0ac", "urn:uuid:702f242d-0697-4f83-bdfb-e598b36ac10e", "urn:uuid:e7cb0fdc-2a5f-4d3d-9cf5-a963aad642a3", "urn:uuid:0789ef4c-dab5-4caf-a0a6-d49bede78019", "urn:uuid:7a9adc73-f408-4800-820d-0c82a6bb6b53", "urn:uuid:60bef7ae-f873-40e4-a824-1d0b66a1e19f", "urn:uuid:21429e22-60e8-4e2a-9f15-73e1aa0a5f1f", "urn:uuid:94165d74-1014-4a92-9798-2caa308e3eec", "urn:uuid:b31969df-5274-44fc-a2f3-46eab5162718", "urn:uuid:18dee324-3016-4968-bdce-a1338fec49c1", "urn:uuid:de28a7b9-0e01-4d7d-8e10-b4eed42cf480", "urn:uuid:9f8be7fc-b402-41c7-8d8d-7a527c217a4f", "urn:uuid:1a067f63-ebbe-4be9-95df-239068ba98d1", "urn:uuid:dbe29e2e-2b18-4a0d-892b-9232ad4efea4", "urn:uuid:24e65ea5-e0fd-4f55-b884-8526887a8dd1", "urn:uuid:7a73e310-3e08-47ce-9b3e-cbe59bbbd23d", "urn:uuid:a1b9e6d8-f045-4f2d-b9f6-e10370ca596d" ] + }, { + "catenaXId" : "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce", + "children" : [ "urn:uuid:6f337645-69ce-460b-9234-133d875f50d8" ] + }, { + "catenaXId" : "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85", + "children" : [ "urn:uuid:b0ba45b4-7511-4619-b58a-dca85cb37db4" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946", + "children" : [ "urn:uuid:2ce74a26-6c89-4f36-9733-6d43e3c90b26" ] + }, { + "catenaXId" : "urn:uuid:ae361cb1-782b-42c2-aa4c-c7bc76511fcf", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", + "children" : [ "urn:uuid:2ac66c67-a343-4b59-baef-fd8f3b0ee2d3", "urn:uuid:5a672ccd-d66e-482d-8528-a45b49d3f946", "urn:uuid:ae361cb1-782b-42c2-aa4c-c7bc76511fcf" ] + }, { + "catenaXId" : "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a", + "children" : [ "urn:uuid:47f20f1b-689f-4bd7-bfbb-818d6c98bdf8" ] + }, { + "catenaXId" : "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69", + "children" : [ "urn:uuid:bc2a5af6-1b71-43e7-ac55-6b9874495261", "urn:uuid:2e5df1fb-543e-4f7a-94f8-e8859496164a", "urn:uuid:8229ad3b-ef8a-4d0d-96de-55e2f10c6df3" ] + }, { + "catenaXId" : "urn:uuid:54d73180-5b3e-4547-a6d9-780b09c3027c", + "children" : [ "urn:uuid:91c5e0b2-28cb-40e3-9e02-2f7c0e3d63b2", "urn:uuid:a83d7928-5d6f-421c-919b-7c65c9343c0b", "urn:uuid:e6a9c810-734e-4c73-90dd-66c195b79309", "urn:uuid:2fffea0f-9628-4e2e-a96f-47af3985e5b2", "urn:uuid:f4aec249-be13-4b08-bed3-e5be8faa42ce", "urn:uuid:89f0648a-e9c9-4781-a601-7ee250fa1b85", "urn:uuid:7da22501-971b-4580-afc5-5f602a84bcf2", "urn:uuid:7541250d-208f-42c0-b286-e2c8a862e20b", "urn:uuid:fc6ee0d5-5466-49da-ba5c-6018779a852f", "urn:uuid:d8625fe5-1d40-4750-8676-9b30be158db8", "urn:uuid:75b8cf5b-f76a-4c67-90c0-90f913f4751d", "urn:uuid:d14df189-ce23-4327-b11a-155ccc5ed632", "urn:uuid:e11df9f1-bfb4-4006-920d-1b4e95cd6d66", "urn:uuid:168707cf-75b8-496d-b0e0-df2131887d40", "urn:uuid:0cf528d2-b99f-435f-89fb-aff628cfa14f", "urn:uuid:e09c3065-c382-4bec-998d-8f79a730ad83", "urn:uuid:6a6eacd7-8c0c-4f9a-864e-0c79087e44fb", "urn:uuid:57cdf60c-7dc8-4cba-a941-1ddaff271a69", "urn:uuid:ca77dc4e-e02f-4999-b059-101d6ba18058", "urn:uuid:38d34b5e-832d-4c02-97b1-233a0ab7ef31", "urn:uuid:5395a124-fdbe-4abe-86f0-20d1b9d782d9", "urn:uuid:6dfba136-c5ae-4e94-965f-1c32c25895f5", "urn:uuid:dac6611b-6e7a-4b9a-a06f-c8173acadac0", "urn:uuid:835ca83e-defd-45a0-92ba-4b3bea906b26", "urn:uuid:033f55de-e138-4378-9a01-53bad39c8b2f", "urn:uuid:860ae542-3ba4-47cb-ba87-a3a7477fd3da", "urn:uuid:f37cd36e-757f-4815-9346-4ebb37334429", "urn:uuid:4fc991c9-af03-4914-9286-420aad5ac291", "urn:uuid:8975db16-e9e6-4147-a8cc-b2c733d2211b", "urn:uuid:7340a8ec-71b5-4eed-a0aa-2caac341bfe1", "urn:uuid:0275bc4a-a8ec-4be6-b50b-4b5f6d6e3c5a", "urn:uuid:63e7a6fd-182e-4627-999f-693b0af57706", "urn:uuid:95745350-88a7-4d62-9a24-f306f9b02f07", "urn:uuid:9cbd5ecf-456a-4d48-923d-6764f8e69e69" ] + }, { + "catenaXId" : "urn:uuid:6107dd30-028b-4369-b938-8d932e650440", + "children" : [ "urn:uuid:1284d656-53a0-4d89-98e3-fd45a29d260b" ] + }, { + "catenaXId" : "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034", + "children" : [ "urn:uuid:c2b60249-ad37-4a8e-9787-6edbbc8f814c" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097", + "children" : [ "urn:uuid:58bc62b1-3493-47ea-8116-5583c3d9980d" ] + }, { + "catenaXId" : "urn:uuid:dc3a42b1-c01b-42ce-8735-b734fcf9b391", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", + "children" : [ "urn:uuid:2097a597-97c1-42d1-9595-5a4a4650b764", "urn:uuid:0723fc25-a8e3-4b9f-9a2d-ab077bf33097", "urn:uuid:dc3a42b1-c01b-42ce-8735-b734fcf9b391" ] + }, { + "catenaXId" : "urn:uuid:335e9821-0868-4424-9040-417db5947f5d", + "children" : [ "urn:uuid:a985ee5b-2d8e-427c-b67a-1db6f1b93fce" ] + }, { + "catenaXId" : "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4", + "children" : [ "urn:uuid:799426f8-474d-4d85-9137-d46129cf5e12", "urn:uuid:335e9821-0868-4424-9040-417db5947f5d", "urn:uuid:2811981a-3adf-4240-b93e-f608e830b1e9" ] + }, { + "catenaXId" : "urn:uuid:6a108530-701e-4a9e-a76a-20699caf5832", + "children" : [ "urn:uuid:49fad1d2-4056-481a-885f-f46f8f83215b", "urn:uuid:f674284b-6c1e-4c1f-acb8-494f2398a116", "urn:uuid:79de6b05-836e-4538-80c7-d3416e136525", "urn:uuid:556b807c-1c54-4cb5-8eda-033a2db1ed5b", "urn:uuid:6107dd30-028b-4369-b938-8d932e650440", "urn:uuid:6ed5b6f5-7d54-402f-8dfe-4a8bd8f2e034", "urn:uuid:ca5c4757-312b-479f-ad25-a0553d3e14de", "urn:uuid:1e291e40-be91-4ee0-b55b-99b0e2bc5e63", "urn:uuid:658d1e9b-3ba4-416b-8e9f-340c9c10d0f4", "urn:uuid:f0729a64-5425-4e55-86e7-0d070bbf1377", "urn:uuid:704f495b-15b3-451c-9f1e-245a3a3a347b", "urn:uuid:a7f6920e-324b-45c5-90a0-33545573318e", "urn:uuid:5c6e3541-b6c5-4c74-b22e-cadea466b292", "urn:uuid:ba696742-552f-46bc-b2b9-84ad669bb273", "urn:uuid:ba2eca7a-0c0e-4a24-831a-db69d715ae1c", "urn:uuid:bd46b5d5-5000-49eb-aee8-4a5f54d676ba", "urn:uuid:197bc376-ac0c-405d-af90-9380f4af310e", "urn:uuid:57fa3cb7-e13c-4a77-ba89-264b7a0c59b6", "urn:uuid:28312ba3-bad5-40aa-af75-c53318d1e446", "urn:uuid:25e10753-a6e7-491a-a607-b045674b000d", "urn:uuid:31ac2152-d914-4966-925e-5ffacd9b56dd", "urn:uuid:5fbe4950-60c0-4172-ac15-8c8d0f324de4", "urn:uuid:220f7d14-c8b3-4b24-889f-e9639528aea7", "urn:uuid:a0c89b26-fcbf-4047-8715-6a909ccc44c2", "urn:uuid:4154e218-adf0-4a1a-954a-61607659ed91", "urn:uuid:8184a9e1-a587-4319-9228-3729ed0cd019", "urn:uuid:9dc6eee5-b4c9-4e12-8145-0cbdb4bc4520", "urn:uuid:e1b86f45-cab7-4be5-9fd3-1bbb1ff8a989", "urn:uuid:44dce81c-618a-4068-aa2d-fdd0f7a7bdf5", "urn:uuid:9eedcb70-49b8-4a0a-bda2-ffdb4c73e538", "urn:uuid:6d16110b-6a80-4d28-8c58-c71dc9d1f6eb", "urn:uuid:c80cfdc9-2d97-4856-bcc8-cea1ce8f9e56", "urn:uuid:86bc05ba-0243-48bd-b25a-85e700f6d2e8", "urn:uuid:79c52109-5ea3-47b4-9837-79cf661139d4" ] + }, { + "catenaXId" : "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51", + "children" : [ "urn:uuid:c2bf9e12-e661-4401-8c85-3b2ed1bbdcac" ] + }, { + "catenaXId" : "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517", + "children" : [ "urn:uuid:06accb9d-6328-4796-a51d-2771ec5a3d41" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7", + "children" : [ "urn:uuid:3a304af0-0c2a-481a-af07-134a0ea18ebc" ] + }, { + "catenaXId" : "urn:uuid:430ec8c2-a0c2-468c-b23b-05bc1b6ea826", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", + "children" : [ "urn:uuid:610c3b7e-2809-4055-9206-7d411de64da7", "urn:uuid:3c2c9bdc-c0a5-465f-a00f-6ddb1f2d9ba7", "urn:uuid:430ec8c2-a0c2-468c-b23b-05bc1b6ea826" ] + }, { + "catenaXId" : "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49", + "children" : [ "urn:uuid:a6ff547d-3aec-4eb7-bd80-2c467fb7aa24" ] + }, { + "catenaXId" : "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75", + "children" : [ "urn:uuid:14f52091-249f-4ee6-a0f8-1724ead45d46", "urn:uuid:8db0fd6a-2d0c-4714-92ab-ac305383db49", "urn:uuid:bdadb221-5d9b-4dc2-801c-12ca006b4ede" ] + }, { + "catenaXId" : "urn:uuid:7ef80d0e-3edd-436a-945b-372f77966f0c", + "children" : [ "urn:uuid:c56c8495-c663-491a-b19e-803cb75c5b06", "urn:uuid:94392891-51de-41a0-a22b-3b91d0007594", "urn:uuid:50a3fe7e-43a2-4482-b827-4a291d1fb101", "urn:uuid:33a0b6f6-6aee-4c84-a941-8facfca00676", "urn:uuid:4794b314-1746-48c7-b87c-ef6115558d51", "urn:uuid:a13e1f6c-3368-4a97-bb80-2aa1509fa517", "urn:uuid:1fadc31f-319b-4174-882d-8726225344a7", "urn:uuid:0616a8dc-f7ab-468b-b472-429b8287b73b", "urn:uuid:0a257342-95ed-403f-8cfb-903b65eb3fec", "urn:uuid:a56eb62d-bd6e-48e4-ab3f-369760f9483d", "urn:uuid:ef14a302-30db-48f2-9587-8da45b44bbaf", "urn:uuid:40899128-9044-485e-826e-c271d8987f92", "urn:uuid:a0e69a33-4462-4a3d-8f93-d66e923a0c3a", "urn:uuid:abc4fc03-cc66-4328-b9a2-70b1eb5889d8", "urn:uuid:5dc976bd-9509-4546-ba39-e40c3ccf1270", "urn:uuid:eb6d2a12-e1dd-4a5b-8583-3d21e863193b", "urn:uuid:c3e01ae2-8573-4103-a87a-c3b5bb34b48a", "urn:uuid:664e07d1-b48a-49d8-bedd-4269234be8a3", "urn:uuid:c89f4216-abed-408a-8c0f-cb35fe312a28", "urn:uuid:1a915873-ff7f-4ca5-9e8b-365b1fb32c84", "urn:uuid:6cdb3c09-3773-4520-a8c6-8b547c41f4b2", "urn:uuid:b318f6dd-0edc-4eb5-8d7c-8d38828125f3", "urn:uuid:3ffab5d9-bf36-4caa-92cb-0df0990bd1d4", "urn:uuid:e5326f8f-1237-4271-aab9-c74de8a63dd9", "urn:uuid:62c185e0-ab65-4129-bafb-9a7218c23612", "urn:uuid:ebfaa0b7-0030-489c-8558-c5ebc3e64333", "urn:uuid:f944b674-f9d1-4500-ad3b-421188a1e491", "urn:uuid:754e2f2b-c91a-434f-a9a5-817f7a47511d", "urn:uuid:3e49560c-95db-4b04-b984-d8b21639a9f3", "urn:uuid:665c9779-2a5a-4b44-8e0a-91c276fde8e3", "urn:uuid:8ad1fe78-5285-46a8-9afb-0807c1be7981", "urn:uuid:175d6bda-4ab2-4024-ae81-63c373d29d10", "urn:uuid:a9073821-cdcc-42a5-a51a-74366e0c125d", "urn:uuid:328a3f01-4b61-4eaf-ae9a-1603127c7e75" ] + }, { + "catenaXId" : "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8", + "children" : [ "urn:uuid:b756238d-0f74-48c1-987c-fec796f43b4b" ] + }, { + "catenaXId" : "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8", + "children" : [ "urn:uuid:0637d576-b597-418f-8fc5-fbbc72ea47a6" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09", + "children" : [ "urn:uuid:6ae57614-dc3b-4b6e-b1a2-24601849dffd" ] + }, { + "catenaXId" : "urn:uuid:1938c366-ff17-4665-ad2b-d14598b8c897", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", + "children" : [ "urn:uuid:ceb13138-262c-48b3-8236-419ddbdf6b45", "urn:uuid:ecc5c8c0-8cf3-4e41-8644-046c43e92f09", "urn:uuid:1938c366-ff17-4665-ad2b-d14598b8c897" ] + }, { + "catenaXId" : "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc", + "children" : [ "urn:uuid:da6d57e8-9362-4ede-b7bb-ee240fcc20f6" ] + }, { + "catenaXId" : "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71", + "children" : [ "urn:uuid:263e8d09-299d-48cd-9a83-ef3241fe8db3", "urn:uuid:371939a7-8a2c-42b5-80f5-6ac52715dacc", "urn:uuid:86c6300e-f657-465b-a4fc-e4d91329edaf" ] + }, { + "catenaXId" : "urn:uuid:deb65b6d-249c-4da6-8424-eb08ca331adc", + "children" : [ "urn:uuid:008f5710-903c-4281-ba91-0f1a5f165422", "urn:uuid:c724ee23-9e58-4c80-be7f-47192d98a418", "urn:uuid:19da9c69-825d-4343-9ba6-5f3887e7d789", "urn:uuid:de9ab0e9-4d03-450c-bd01-86f5408bc516", "urn:uuid:e0e9ef00-1721-4913-a303-3f8ca3b5c0e8", "urn:uuid:ad9da2ac-17d7-4acd-a580-b2ca4a7aa6b8", "urn:uuid:b986ee0a-7b14-4020-8f78-f92e82669a7d", "urn:uuid:7738d4a7-0b76-4502-b009-93655f46d44e", "urn:uuid:d18f20cc-c779-4592-a2c4-15bde849e7e8", "urn:uuid:01274f52-bc81-4bd5-b101-80dda2c21080", "urn:uuid:6db4bf93-d388-4fb8-9818-769e710626fd", "urn:uuid:16df227f-0def-4ea5-b0ef-1bf122093c5e", "urn:uuid:4dfa7800-45f7-4644-85fa-ee9d1aebc326", "urn:uuid:4ced8f3d-d7d2-4904-9124-58d23bab9261", "urn:uuid:e5f95d60-078a-4c77-93a6-106ee56aa491", "urn:uuid:8960a8bf-bdab-4a11-a4a6-052c83371750", "urn:uuid:e84403f3-5c13-4c55-aff2-dddc4c20cec8", "urn:uuid:46a8c001-1dc4-42a4-9468-a2cbf6822d6c", "urn:uuid:fb0eafb0-388d-49b8-a620-9efeb01ea0d3", "urn:uuid:b5fe6a3a-0c48-4033-90a7-7b43ba99445c", "urn:uuid:209fa434-08c6-4dc4-8671-cc94f1b50e3f", "urn:uuid:721a91cd-1d95-4f5c-a98b-2d3e353afbe4", "urn:uuid:531d9e13-19ec-4903-ac7a-4f3a333c105a", "urn:uuid:4631a586-b0fb-4af1-94b0-b333cc8e4748", "urn:uuid:6a3b9195-a61f-4846-a882-15268df819af", "urn:uuid:e0bad19c-5bfc-46f5-9f46-d26c0f6eea6a", "urn:uuid:d1e71ea7-29f2-4f39-9d5d-65a37ad47777", "urn:uuid:8bb75f0b-1a60-4e69-9b39-c859f6205782", "urn:uuid:8b3c5ad6-e4bd-4227-b245-e8cba8b1e4e8", "urn:uuid:322bb7e9-e9de-4de6-8e4c-22446dfc5e1b", "urn:uuid:2d74bb30-3a72-4561-ab19-0446606774b8", "urn:uuid:abeba0ea-a269-4c12-bf65-c4f631981be4", "urn:uuid:c7b16b60-88d6-4020-be51-c38b58134d38", "urn:uuid:f0138afa-675d-4612-bab1-8a1a67553b71" ] + }, { + "catenaXId" : "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98", + "children" : [ "urn:uuid:6536c53a-2683-4e11-8875-83bd9baedfd5" ] + }, { + "catenaXId" : "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3", + "children" : [ "urn:uuid:a67280e2-c1fc-4e44-a859-5ea90e499eb5" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76", + "children" : [ "urn:uuid:c00003af-58fd-4b7c-a8e8-48353488db45" ] + }, { + "catenaXId" : "urn:uuid:21624bd8-af23-4041-abe6-cf9b2abfcf44", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", + "children" : [ "urn:uuid:e8fe6f59-5c46-4d17-8fdf-a2977cf1669b", "urn:uuid:cb94f7e7-df27-4345-a686-5fc222592f76", "urn:uuid:21624bd8-af23-4041-abe6-cf9b2abfcf44" ] + }, { + "catenaXId" : "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250", + "children" : [ "urn:uuid:7ecebbd1-9cec-4913-94f3-adc7641b669c" ] + }, { + "catenaXId" : "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc", + "children" : [ "urn:uuid:aedff1a3-5ba3-44a1-8c18-8ab96953c88a", "urn:uuid:3faf185b-6ef4-4abd-bf9b-cce064b00250", "urn:uuid:21331807-8e10-4cc9-bb9a-a97605977c25" ] + }, { + "catenaXId" : "urn:uuid:09f15501-e7ca-4c34-8bf3-a650a0a133c8", + "children" : [ "urn:uuid:a185bbfd-f114-4b8c-a021-ecc820ffbc8c", "urn:uuid:05fd5901-137d-4dcf-a66c-9f15a04dad70", "urn:uuid:c0b8628f-a67b-4437-ba96-e2db80311f8c", "urn:uuid:c4699691-12e3-4567-8990-d57c53872f29", "urn:uuid:12284ec9-21fa-4991-b382-01e8ab9daa98", "urn:uuid:90f781a3-6e79-4a2a-9b5e-f7a54cdc06b3", "urn:uuid:61b24ad9-5b6a-4bf2-ab7a-92dce0c301e5", "urn:uuid:2a7eab03-5b5b-445e-8504-e777407def9e", "urn:uuid:bdcdae70-3d8e-4f20-a669-f9ff02057ee4", "urn:uuid:88a2b1a1-f1ef-47c7-a63b-0353313f827c", "urn:uuid:84cc2b87-8fd2-4d55-8a98-33f4cfe762b9", "urn:uuid:1ec0d9f1-996b-4fa7-a4b2-0741d61d2ae9", "urn:uuid:1aa99119-8beb-4bb5-83c4-23e59b0b5a92", "urn:uuid:54917f36-30a9-425b-b7ef-325d1e67dfb2", "urn:uuid:abc3be81-0a25-4581-a054-5327d4744aac", "urn:uuid:e9f28253-f353-4672-9408-9c5bc2d376a9", "urn:uuid:9ac53652-34b3-40fa-be9e-0e2b6c04e820", "urn:uuid:9aac9db5-72d4-4fe9-8663-335b72d37720", "urn:uuid:d4d3cca1-f378-457d-9d18-4e45641c071a", "urn:uuid:c6c3058d-e297-4988-8196-7b8b8bb086fe", "urn:uuid:d47e0a83-384b-4121-8131-13fe4f9f4b43", "urn:uuid:c6c5af39-bebf-426f-84c2-4fcefdaaf06a", "urn:uuid:c327bc16-cbc3-4338-a571-7d1583b935b8", "urn:uuid:ecd837d0-bbe3-4ace-a81b-0d62d3043615", "urn:uuid:db97ef3a-c865-49fb-afed-4fb29d3134c8", "urn:uuid:9b520d70-3594-417b-84b1-8fcd6f3e172c", "urn:uuid:5fee25cf-5a93-4352-aed6-cd81c8d12a2f", "urn:uuid:115a987d-ed09-4107-a2b7-e41eebe5faa1", "urn:uuid:e9650b24-b4d0-4f74-be57-4bc9fa2fc45f", "urn:uuid:9fa379a5-69ea-4557-87a7-9dfa6dc51b33", "urn:uuid:38845ef1-36b1-4ae5-b8ce-29f3c007c175", "urn:uuid:e825d9e7-c24d-4340-a565-b17f64c685f4", "urn:uuid:c4dc1f74-de9e-40d4-a26f-0afa48c13f16", "urn:uuid:11e339ce-7cc6-40cf-bb34-90df8b8c4afc" ] + }, { + "catenaXId" : "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514", + "children" : [ "urn:uuid:6c5bf952-e869-4377-8d9a-44c0b979c0ff" ] + }, { + "catenaXId" : "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d", + "children" : [ "urn:uuid:ae2db4bd-97eb-4630-aaf2-9f94bc12ef78" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e", + "children" : [ "urn:uuid:2942084b-8a2a-4354-b5db-c91546105a01" ] + }, { + "catenaXId" : "urn:uuid:2b13a02a-bbe8-4c10-913e-5d398b959655", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", + "children" : [ "urn:uuid:0fd22046-c195-496e-8a49-e991e9f698bc", "urn:uuid:31aa73e9-23ad-4b2f-8874-83ad2d0edf1e", "urn:uuid:2b13a02a-bbe8-4c10-913e-5d398b959655" ] + }, { + "catenaXId" : "urn:uuid:5301c872-3267-4319-be52-7a537c25f183", + "children" : [ "urn:uuid:6ee9122d-7a01-4ae8-8a4f-c22ba9ccb3b2" ] + }, { + "catenaXId" : "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0", + "children" : [ "urn:uuid:9f104e98-667d-4d8e-bf77-4e04eb33419a", "urn:uuid:5301c872-3267-4319-be52-7a537c25f183", "urn:uuid:57e625cb-f783-411b-abb6-cbc0d478cecf" ] + }, { + "catenaXId" : "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:d8eadd57-d6db-4253-8443-a070093ced75", "urn:uuid:ca199f1c-0a66-4e1f-adad-dab0049b9387", "urn:uuid:5449a055-efea-48bd-a437-e3536ebd0dc9", "urn:uuid:80517c1b-2c8a-43e2-adbe-2dd7f8446474", "urn:uuid:c81d1a35-7c1c-4b10-881c-749b6289ffb7", "urn:uuid:565b585b-5d4f-4c62-9796-08397908bf91", "urn:uuid:9d9b1fb9-1557-4fc9-835d-72c4c011cf1d", "urn:uuid:773bc82a-40a5-4721-ab27-fe0e92780ade", "urn:uuid:c9039f1e-7dc3-42d4-a455-ef77bf5dd4ac", "urn:uuid:9d97be2b-1edd-4481-89e5-7c1a7667086a" ] + }, { + "catenaXId" : "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:23aba640-b3b8-45d1-9b76-78a07e58838e", "urn:uuid:a236e214-84f6-4fc2-8091-344db75800b4", "urn:uuid:d1cbe0b1-8e77-4379-9e75-dbbf910614c7", "urn:uuid:5cebbb4b-85e2-44ac-9846-9afd383b5980", "urn:uuid:e8e0f18e-9569-4f5a-a5ad-c9e9554f315e", "urn:uuid:8f25798d-4753-41df-b2d3-a5c7eb408119", "urn:uuid:1af3f3a1-e432-41e2-8c57-ec701963ba96", "urn:uuid:2ed93245-f15b-4c45-8484-de46568abb66", "urn:uuid:aa1d2b5b-9d53-4865-9acb-136808765d02", "urn:uuid:57620851-81e0-4448-9f96-ab2fe76b9c81" ] + }, { + "catenaXId" : "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:4f7eae4d-418e-448a-a15b-7f8dc414c868", "urn:uuid:71f9b87e-b4e0-42d5-ac57-1c1398c8a3c2", "urn:uuid:3989912b-059a-43e6-8a39-d6e4e8b84b25", "urn:uuid:4f58eaed-b3b6-4285-904e-2ee657cb1093", "urn:uuid:ac6f6310-56ee-4bfd-9df4-e00d89b4d130", "urn:uuid:12d9bcf2-4fb9-4751-b6ca-89313b0aed3b", "urn:uuid:5e401107-05a9-499e-9bfe-f6d83f7711c4", "urn:uuid:1f2bdd7b-a68b-4c81-98b6-93e53ef98570", "urn:uuid:a8048be3-4c0d-4c00-8186-9052291fbe51", "urn:uuid:0cbaa38b-4e5b-4e04-871c-cbf892f8c758" ] + }, { + "catenaXId" : "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:3fc96b72-ab53-440a-b4fe-fc3c0458c5a0", "urn:uuid:2b74aefa-dab4-4bd8-b6ba-e0d33164e75a", "urn:uuid:8f8be48a-163a-40a7-86ed-67b0408aecc9", "urn:uuid:c1024435-463c-4694-906d-be8fc3a061d2", "urn:uuid:cca53ab9-45d9-4c6b-b29c-ee93b20bc914", "urn:uuid:5362779a-0f0d-4d4b-92a9-4eeb6b1e9d3c", "urn:uuid:be8057da-6084-4078-90df-743f5bca99f6", "urn:uuid:815cb011-6380-4fbc-a34c-f00ce9d6cdc9", "urn:uuid:a66cc6af-be11-4ec1-9984-46b372c71f70", "urn:uuid:c76639c2-7612-4e47-ab52-4376746bea5a" ] + }, { + "catenaXId" : "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:fce52282-51ea-4e52-86e7-eefa9895f365", "urn:uuid:39e9e420-442c-4f64-85dd-8c9f0b9eabc5", "urn:uuid:93aa9df1-da2c-46a0-b563-e1ae37f57fdc", "urn:uuid:fb9b58ae-fa00-4965-971f-33410fea2f1b", "urn:uuid:8c1be1e0-dfe8-40ce-aa9e-321fffe31f0d", "urn:uuid:523c6aff-427d-4c5c-8a5b-45d8d672c6fa", "urn:uuid:d160127b-0f40-479a-aa34-f10b6fd2df6e", "urn:uuid:b789900d-3333-4f3d-b3fa-63503dc4a693", "urn:uuid:b58e5415-b043-4179-a55f-e25b38b04aae", "urn:uuid:5b3e8f35-7522-4747-80c8-bcaf34185a6c" ] + }, { + "catenaXId" : "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:b66ac44f-c14c-4a6e-815c-2efdea1560b3", "urn:uuid:5263e7e7-0e60-47e1-95fb-11ded419b470", "urn:uuid:eb069f98-4062-4082-8d51-d1ff8aa5a0e1", "urn:uuid:84b352b0-abd4-49f0-96be-81568c9dbb23", "urn:uuid:7f05aa00-f6e1-45b0-92c2-b0e87845c555", "urn:uuid:83b1480c-23f9-4453-8abf-42c22906f058", "urn:uuid:eff37957-dfd2-4e84-943a-21937efdd389", "urn:uuid:cd30c7b3-8c59-4284-ae9b-052831f8b5f8", "urn:uuid:6a43745d-ffe8-48cb-a7ff-5a007747e1ac", "urn:uuid:1f92ddd4-f1e0-48bf-88ba-e281d747471a" ] + }, { + "catenaXId" : "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7", + "children" : [ "urn:uuid:627ba82a-09c3-49b1-8442-46c135abd278", "urn:uuid:2ae533d1-7f06-4c17-92a6-4c77de4c0870", "urn:uuid:6e1b6cb5-a8e9-43f9-bf87-d08df10278c2", "urn:uuid:f9f39e35-6195-4fc3-919c-0b029e8af8fa", "urn:uuid:2b6dde31-8a3f-4753-957e-661a07adbc9d", "urn:uuid:acfc225e-ee28-495c-921d-41d57f430d69" ] + }, { + "catenaXId" : "urn:uuid:7f2b4f46-f39c-41b1-ae3c-f0a4a5873b6a", + "children" : [ "urn:uuid:c1971b88-b4fd-42e9-9f2f-1d4f87d90210", "urn:uuid:93078d4f-5ae7-4ec1-b584-ce543c4f3514", "urn:uuid:18236aa4-7298-42f5-a4a8-e720ba264c0d", "urn:uuid:782d267e-e9d1-4871-9cf3-09f2396e4afc", "urn:uuid:b396bf83-b90a-4b96-8aaf-339e05fe32ab", "urn:uuid:08e564be-6b51-4d79-b267-ffc0d8215f54", "urn:uuid:e526c1ae-6ae7-4a45-a0ea-20c26d5f43c1", "urn:uuid:085380b4-eefc-480f-b7c8-67a3487b64db", "urn:uuid:2b988c9e-1a2c-441d-bcd9-127f36c3fa10", "urn:uuid:b1514135-7aed-443f-aa42-3d824f31897c", "urn:uuid:f0123ae3-6bc7-4650-926b-0aeb5ba8136e", "urn:uuid:4e894d81-3d2c-46d2-941b-8a3faf8efae2", "urn:uuid:ac153abb-4705-4f7c-9104-adebed1ea70d", "urn:uuid:471786de-3b08-44a6-a67f-d0866768c5ca", "urn:uuid:111c2947-9d09-4a63-b114-1aa365a5ee36", "urn:uuid:d6f151e1-fc53-468c-9590-e87489d05076", "urn:uuid:da329e19-8217-4394-b1df-8956956c3e98", "urn:uuid:0e210008-a479-48bd-9d0f-889471647aaf", "urn:uuid:5ae46e16-a7dc-4f76-ab17-04d26b48fa80", "urn:uuid:e140ec3c-d7f1-4f46-adaf-cc97339e4f42", "urn:uuid:a18c2536-8993-4c52-aca7-8c7a6629da03", "urn:uuid:c9d6421e-d2dd-43ea-a9ac-72a9d6a25675", "urn:uuid:269be1da-57a1-4ea3-a53e-5f584d07606c", "urn:uuid:8b023fc8-a9fb-40c0-8fb1-79b3347a751f", "urn:uuid:69df0386-051a-433d-a074-2848039ba421", "urn:uuid:a63b01ca-a9a4-4ce5-9639-c848fc411146", "urn:uuid:9640d81d-01f9-4a3d-94fb-3a0204693076", "urn:uuid:7ddc3de7-c032-4b21-acd3-1eefc35d698c", "urn:uuid:ac11a67e-f7ab-4feb-9001-217b88fb744b", "urn:uuid:7cf76303-deb8-43d4-ba29-ec425f4c7695", "urn:uuid:c8df1bac-020e-404a-bd9a-2648b0ccb8f0", "urn:uuid:8466fe39-2c43-468a-938e-d4b8fd8149d7" ] + }, { + "catenaXId" : "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4", + "children" : [ "urn:uuid:c1f03e18-442d-4fb8-8fc7-8c07aa7907e6" ] + }, { + "catenaXId" : "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702", + "children" : [ "urn:uuid:a7600f88-d1d0-478a-a174-8e7ab14033e4" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d", + "children" : [ "urn:uuid:0de5cdd7-7a92-4186-817c-19a7a4358cfc" ] + }, { + "catenaXId" : "urn:uuid:780afdc2-b1a0-409d-9abb-aac570eef533", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", + "children" : [ "urn:uuid:baf381ed-0d4c-4d25-b774-2d0df1e2a05c", "urn:uuid:48936d60-a497-45aa-beff-78f6aa07134d", "urn:uuid:780afdc2-b1a0-409d-9abb-aac570eef533" ] + }, { + "catenaXId" : "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658", + "children" : [ "urn:uuid:1bdc7eb8-affb-4e33-b158-5bb65c2873e8" ] + }, { + "catenaXId" : "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6", + "children" : [ "urn:uuid:f6d580d4-6ca9-4f28-a66e-e12b25247949", "urn:uuid:21428167-32cb-4689-b47e-9c3bc437d658", "urn:uuid:e064dc9c-0e0a-448c-9a72-b6c0de81f20c" ] + }, { + "catenaXId" : "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:727334c5-5b6f-444f-8204-f19796212538", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:cb4e4f51-c15f-4e5a-9584-3248bce46617", "urn:uuid:9eca94dd-6812-4ed0-87f2-a4b7eb34a1f7", "urn:uuid:f2ffa511-92be-4a47-acec-d51fdaf53613", "urn:uuid:98f15aa6-db8d-47f0-8d28-d95b9d8173d6", "urn:uuid:3837b714-332a-499f-bfea-914e0d340f48", "urn:uuid:5026c4d1-0f53-4ad8-a863-a79aa26089b3", "urn:uuid:f816761a-f481-4a5b-92f8-caf95334143e", "urn:uuid:81f4c3a1-e283-40ca-86cc-2d2eb958ba12", "urn:uuid:051dcc2b-bb36-42fb-b8ae-abcd04d19957", "urn:uuid:727334c5-5b6f-444f-8204-f19796212538" ] + }, { + "catenaXId" : "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:7c0ee19f-e34c-4339-9e63-e97842fabbfc", "urn:uuid:cd2da488-5615-40ea-b6b3-88063c0ecea8", "urn:uuid:7e91ec70-9bdd-4e53-b9a8-249d98504f9c", "urn:uuid:25cc1fd2-8f35-48a8-9351-1b211c398fb4", "urn:uuid:7a13cb82-7e6f-4b0f-b2bb-e8577d9ad071", "urn:uuid:c6715101-5fb3-4bb1-bdfd-a7d0796d736c", "urn:uuid:113d20ab-5a6c-4605-a345-7c7f041f10e8", "urn:uuid:6f668c78-7875-473f-8f2c-befed0852587", "urn:uuid:50ba011a-5664-40e5-8841-2965313e27f3", "urn:uuid:22af6f50-8919-4774-8fdf-e0160ec76a1d" ] + }, { + "catenaXId" : "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:0954a761-43a3-4409-8997-66ab1dc317ea", "urn:uuid:a7b1d649-f002-4803-bd33-0bd495fc36b1", "urn:uuid:4214e85b-f7da-4fb1-a6b2-b836ab31e13b", "urn:uuid:f9a3a898-eafd-47e0-aee8-d0eb6f942ed5", "urn:uuid:c19da266-f924-4e57-a64e-3224c1e1f161", "urn:uuid:6a6ca15b-6824-44fb-b1ca-2224a90511e4", "urn:uuid:a46d840b-8885-4c0f-ad49-a357306f5225", "urn:uuid:128bdde8-85c6-40a8-b0a1-63795f56cf4b", "urn:uuid:577894cb-2737-42d0-a852-920bcf53e51e", "urn:uuid:f27a2982-24e1-4b54-8d15-2c65ec664ae6" ] + }, { + "catenaXId" : "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:21ba958b-367d-4464-9cad-59dfc23be7ba", "urn:uuid:3c30e355-3e42-4be0-aeff-fd10c5a86c7a", "urn:uuid:2edeaa4c-2474-4d4e-b168-5fd0f3b96fdb", "urn:uuid:96bb8cdd-c863-46ab-baf3-ee8a877966f6", "urn:uuid:d719ff4c-1dc2-4b52-ad01-e3ef7af823e5", "urn:uuid:be2105f0-3bfa-423b-8c7f-1cf680db9467", "urn:uuid:af58d61a-44b4-4f93-a955-ac442ec6e21f", "urn:uuid:b45ecf20-8137-4c0e-be86-29661422621f", "urn:uuid:b70c1f8e-4333-43c6-8b64-fd3b7bc33246", "urn:uuid:629b9b68-bb0c-4367-a3c3-ff06f2881d0c" ] + }, { + "catenaXId" : "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:9aec4a60-49a1-4bac-8027-7212df5bd64b", "urn:uuid:8ce4a571-d0ce-495f-9677-eae8f354c7ba", "urn:uuid:4a903833-2aa5-48f5-9120-d46a23dd2c21", "urn:uuid:e15673c3-7ba0-4461-b8b4-bf123d8f8c5a", "urn:uuid:7bb9c282-32d5-4bc4-b100-64240f46a939", "urn:uuid:cd91bbab-4838-4f41-ab8b-2ede21483714", "urn:uuid:be59cc8a-a9ee-4393-866a-a1301923606a", "urn:uuid:8e85e99b-3ea2-4f62-ba47-a7dd7812c0ef", "urn:uuid:2ab94868-9fe1-47fd-b55e-6e4adc52386b", "urn:uuid:4ade8729-35e8-4f2d-a642-ef0a131c004f" ] + }, { + "catenaXId" : "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:94db8f20-0325-419b-b878-abba77600dde", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:e0d2a945-0ca5-4bdc-be1d-da175208448b", "urn:uuid:d63e67d4-7ad8-4bf6-8718-5d0f7f73995f", "urn:uuid:734b036d-1684-440a-a766-a2334a5bb766", "urn:uuid:94db8f20-0325-419b-b878-abba77600dde", "urn:uuid:fc214618-f0a6-479e-91b0-4a7a12aaf388", "urn:uuid:2ad59ca8-a14d-4051-b486-9522836ed777", "urn:uuid:c4572bd7-5d1b-41cb-8ad9-5ec8085e18a1", "urn:uuid:5bf477e7-a7f3-47c6-8a49-94af90e5e87c", "urn:uuid:7a7a87b6-6a77-437e-bc1f-2ea0bfe093f0", "urn:uuid:1b6ea059-6290-4785-b48f-f8233faf877f" ] + }, { + "catenaXId" : "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1", + "children" : [ "urn:uuid:0ed73ca9-542d-46ce-9c16-92fb68ef9eaa", "urn:uuid:5e35f63a-c4e2-45fa-871e-d3cb06f730ab", "urn:uuid:130ada78-90ea-48f9-a1d4-8f314753fe1a", "urn:uuid:71ca9e19-ae0f-4852-adef-6b896a76cb34", "urn:uuid:93c666fa-8fee-4d74-a503-645071f40a95", "urn:uuid:7945a9c3-f2cd-48d1-a9b8-be0f9cc34f1e" ] + }, { + "catenaXId" : "urn:uuid:44c1ccdb-b293-4d91-8458-3f018699a946", + "children" : [ "urn:uuid:f665267c-0a61-4377-b6ad-b30d5478e924", "urn:uuid:19b44684-89fc-48ce-aca5-602475091da4", "urn:uuid:dc2cf932-d9ef-41b6-acae-60ac9e0e4702", "urn:uuid:f3e2fa33-538d-4c8b-ad72-8f0b4ede3b80", "urn:uuid:eb0b6b81-b232-478d-ad90-8cfbd8a18efc", "urn:uuid:8a906410-7a40-4555-af7b-26d7eab1445f", "urn:uuid:609975e6-6275-4f72-a050-d6da88bb7e87", "urn:uuid:07afa459-e9fa-42cf-a5a5-aae4eedd24fa", "urn:uuid:1d6f3a2c-722b-40ae-b18b-28aafcee939f", "urn:uuid:f37f2e28-7098-41f4-94a8-05a0205cd80d", "urn:uuid:343db4cb-9d4f-4bf5-8baa-810e04462af0", "urn:uuid:6fccf022-a777-4166-8dc1-45c9e6e7bd6f", "urn:uuid:68a321b4-4142-402e-8748-3a92dccfd498", "urn:uuid:24ff4166-bea8-4fa7-b11c-c3e3af5fee99", "urn:uuid:157a3434-d281-4de4-9652-150f9049e6b7", "urn:uuid:b0a64381-0f6a-4448-8a17-5e2ec2cf0d79", "urn:uuid:68ecfa10-6024-4863-af24-0008679113aa", "urn:uuid:ed442b9d-34bd-4a2e-9432-42a18d3ebcc9", "urn:uuid:a2961ad6-97a6-4204-bde2-3bf24ea7eb26", "urn:uuid:98e7b7bb-99b8-482b-88aa-5f43b6ac48a2", "urn:uuid:dafb9c98-c94d-4957-90bb-ef9aa19b42ab", "urn:uuid:fbae2f31-880b-453d-bed3-798ccdf3a1b0", "urn:uuid:367cc710-899c-4d41-9b6c-4acbec4942a6", "urn:uuid:1814d556-1265-42a7-8083-99aec5522368", "urn:uuid:5ced3ac6-71ce-4ed7-a161-cc364d1f8179", "urn:uuid:6d2ed860-fec6-48f2-b7e4-86f9c8f0a594", "urn:uuid:269584ac-ac45-4da4-b05a-8084649446f2", "urn:uuid:5cbaff55-69c6-4585-ba92-74ca55a56b50", "urn:uuid:bf612a5c-4209-4880-8f8d-5c53ce1b7a55", "urn:uuid:504eeb6a-0224-4ff0-961d-85206ce1b62e", "urn:uuid:de353e4f-6667-40ba-b50d-da3caa2b96d6", "urn:uuid:8393ec3f-5506-46cc-9132-dadc4d8883d1" ] + }, { + "catenaXId" : "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9", + "children" : [ "urn:uuid:a14f80cc-6783-40d0-8bc7-73535b163c76" ] + }, { + "catenaXId" : "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab", + "children" : [ "urn:uuid:da89bb14-f11b-4bdd-9519-c7fb075e3952" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff", + "children" : [ "urn:uuid:14baee0d-7daf-40b9-a99c-7bd2ee06c98d" ] + }, { + "catenaXId" : "urn:uuid:ffff3b41-c96f-4a1f-ae07-2f81a36b99b4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", + "children" : [ "urn:uuid:abac29c4-d3b3-4a43-96ea-cabb18a93478", "urn:uuid:58f77ce2-ca3f-4eef-84a9-42684b645eff", "urn:uuid:ffff3b41-c96f-4a1f-ae07-2f81a36b99b4" ] + }, { + "catenaXId" : "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f", + "children" : [ "urn:uuid:3dae49ed-2135-40df-b2cc-9e898637a58c" ] + }, { + "catenaXId" : "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013", + "children" : [ "urn:uuid:8a2fff9c-9e05-4fdd-a709-be98f75897f6", "urn:uuid:8d876436-1cce-495e-a89c-d893f847fe9f", "urn:uuid:d07ef48a-039a-44c6-8441-6b1445e86850" ] + }, { + "catenaXId" : "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:a753e4ca-eb37-4e34-91bd-6c5aba8c66af", "urn:uuid:321e4f25-c0f8-45f9-bc97-9d5c1097cef0", "urn:uuid:d6cd966d-671e-4e00-ba64-d3044c846222", "urn:uuid:c0ba805f-77e3-4175-9e0a-47ef6ad8d60b", "urn:uuid:e5a23cef-614f-48c8-836d-bb5732b471fa", "urn:uuid:27a5bf06-d4d7-4706-9136-166c66d394f0", "urn:uuid:bf791607-a7ce-4dd3-ac07-4b30bfb4511b", "urn:uuid:974399e9-9119-4de5-a89d-ec7fd8e78845", "urn:uuid:1b178009-5091-4609-a9b2-dbc738187426", "urn:uuid:e5663a86-084f-4b0b-a2be-d62a66a7835c" ] + }, { + "catenaXId" : "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:35eccf2a-c90b-4e91-b4b6-358bc5ad08f1", "urn:uuid:62f7ce17-f31e-4d6f-8d38-0c600e49f9d3", "urn:uuid:7bac6d84-bd5b-49fc-8872-52e319f52024", "urn:uuid:48cae1d0-a7ac-4521-993c-13e52f3c3476", "urn:uuid:9b1d34cb-edc9-4712-b9c5-331d8d427eae", "urn:uuid:580f8404-aaed-40b0-a028-034975c3f3c2", "urn:uuid:bcee6f64-d8f9-4b4b-ac75-59a00de88403", "urn:uuid:096965a6-af84-40b8-a18e-394751d6235d", "urn:uuid:8c6d1db0-b221-49c9-ac51-e7d718f7be16", "urn:uuid:c2327321-2418-49ba-8d2e-06bd91926043" ] + }, { + "catenaXId" : "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:0d1f27ef-18e6-4126-8093-dd990df9db78", "urn:uuid:32c493d9-e16a-4694-9839-e78ba555579e", "urn:uuid:0b7af3f2-70b0-4226-b099-b1dea4a0410e", "urn:uuid:e4763e0e-46a7-44ad-8767-a9508fe45099", "urn:uuid:fec029f6-b952-4f1a-92d6-3da170d2ce3c", "urn:uuid:078bef22-4c55-491d-b974-57371b1e5465", "urn:uuid:5298a980-3288-4715-8837-942c013e9e1b", "urn:uuid:6f544424-84ac-4d20-96e4-a7c5e48b0558", "urn:uuid:c7cd3d4a-dc13-4085-92a1-0cb652c99719", "urn:uuid:581d987e-fadc-4a2a-82a2-234433f2edfe" ] + }, { + "catenaXId" : "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:4d94261d-185d-4a08-a857-7aedfd7a08d3", "urn:uuid:313bd2a9-904e-4c5f-86d3-23908fff97fd", "urn:uuid:1de127c1-6053-4a5d-b0b1-fe75995e2cbc", "urn:uuid:244aa4fe-dfd1-4c1d-b4e9-70a2ed9fc0b6", "urn:uuid:be982cf5-7faf-4d02-b17a-fba20b3c5a46", "urn:uuid:ff79fed6-3bee-49c7-ac0a-e12e1ad5a013", "urn:uuid:be1ce805-4271-4047-a465-b1763aa4293b", "urn:uuid:3d043e23-2d4f-40df-b580-71f68ec784b1", "urn:uuid:383fd312-141e-46bc-bc56-8624e23b0724", "urn:uuid:3c157e76-0e0e-4688-b2b1-0de0eb644fce" ] + }, { + "catenaXId" : "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:cdd20ab3-395f-4b55-ae47-a405aa88cd12", "urn:uuid:81b9dba6-9bca-49c9-adc1-ce0b92e24852", "urn:uuid:6d0e7883-7d09-4019-a371-aba9803c47af", "urn:uuid:8a71849e-87af-4ccd-86ed-0f9a47b75ade", "urn:uuid:5c817fed-6588-403a-9e74-506bd6859dd8", "urn:uuid:e78958a8-95e3-4cf0-a46c-2ead80a4159d", "urn:uuid:c1265f46-d27b-4ab3-9c88-3aa710eb50a2", "urn:uuid:2144b53d-ddcb-4877-baf1-e973fc9ac63e", "urn:uuid:8b2344a5-fb89-475e-8cd6-5575c4f06282", "urn:uuid:77ad192c-2543-4bcd-9b91-a97b05200c45" ] + }, { + "catenaXId" : "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:be36a295-c34e-4225-b4bb-fa88123ec497", "urn:uuid:5dacf6f6-4136-43b4-b349-c05362704cd5", "urn:uuid:84ae434b-7e7a-484d-9c72-973205ea44f8", "urn:uuid:14f22bfa-3d81-48f9-b857-2ad2cc85fd84", "urn:uuid:322f0ef7-e95f-4d46-b24a-856a2656441e", "urn:uuid:1f7a3515-099a-44c8-be33-abbd53211160", "urn:uuid:b477689f-063f-47ff-aea6-f838065af20b", "urn:uuid:ebe4c7b4-7bdc-4482-8e7d-e53cac179aad", "urn:uuid:32cdc0b6-e5b5-4e35-8820-28439b7e9f91", "urn:uuid:b41f1ebe-c67f-4bea-8dca-683e629d5e11" ] + }, { + "catenaXId" : "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d", + "children" : [ "urn:uuid:16b86a87-a6f2-4797-8b7e-f7862e97ef14", "urn:uuid:569b56ef-8337-4185-87f9-474e3aac74d8", "urn:uuid:d55e393c-4c7a-40ea-ba38-a47ab28be73e", "urn:uuid:ee13ff9c-5b13-4f5c-81b2-329a95f7d156", "urn:uuid:a58771d4-7c6d-47a3-9129-27c968c14e3f", "urn:uuid:66a8f269-a431-46c7-a33a-43e658bf3a82" ] + }, { + "catenaXId" : "urn:uuid:ac1276b0-de22-4c0f-b401-695a5ed5e91a", + "children" : [ "urn:uuid:8924be06-7765-4106-b7d0-b2d73c67c382", "urn:uuid:9e5fe2f8-d26d-4d34-a7bd-327255acd8a9", "urn:uuid:c67b7f63-a546-496e-912a-9fdedd9643ab", "urn:uuid:d17d3101-f0f3-4cce-8369-9341a029b05c", "urn:uuid:668e9794-48a0-4b56-b529-fbece2b969ac", "urn:uuid:091146d7-7b56-49f3-9975-5200b69eeb71", "urn:uuid:3cf5524d-de2c-492d-ac51-a7c0e3d7a0b6", "urn:uuid:18900eaa-f611-4073-a945-1250f1e2fccf", "urn:uuid:0046f124-07d5-4ec3-802e-9760172ff872", "urn:uuid:40f7d165-0b3e-4426-8957-60444ae24d4d", "urn:uuid:7b121950-7ab3-4599-adc2-91a900802d8a", "urn:uuid:5be08213-a8bb-4a53-b2e4-f5baa98bdf4b", "urn:uuid:12952a32-02c1-4b91-9eee-73fcbff69b4c", "urn:uuid:57db2076-0208-45d5-9aed-532ca5548bcc", "urn:uuid:661cc9b7-a1cc-4516-9529-312209f57719", "urn:uuid:8712137e-06fd-4c17-b855-0690dcb8f9d6", "urn:uuid:4764aeff-9f7d-4a44-9a2b-1e01a11fb6ab", "urn:uuid:e7c78143-b5a8-4d42-8b10-f68b368cbc54", "urn:uuid:faa41e43-798b-4c10-86ce-bb0456261d99", "urn:uuid:c7f3d6e0-5ae3-42ac-a9bb-be8a28df6f7a", "urn:uuid:4eb9cad5-9013-44bc-ac73-59d54158ed31", "urn:uuid:787aa97a-05ac-4f56-aa6d-a9646e8e5daf", "urn:uuid:67c9205b-39c9-4870-a9a2-68a085d6fd84", "urn:uuid:8600785d-f554-4845-aba9-b0a8ba48b8be", "urn:uuid:322f4b0f-b0f6-4722-a777-55e437784ede", "urn:uuid:696fa8af-52b3-4e67-918f-660fd93d8d26", "urn:uuid:43d4cbcb-2a07-4a3b-acd9-d9de7575ba41", "urn:uuid:ccba0f39-9b7a-44d2-adac-b5999b334fc6", "urn:uuid:26b2c4dc-93e6-4403-b97c-84fbd43cf148", "urn:uuid:d51d34f0-799f-4481-9e55-d2cbb1ee3c78", "urn:uuid:2d02d8d3-4701-4576-8c10-fb42346da013", "urn:uuid:4ac9cdec-0d24-4cf7-9e58-e574b924fa4d" ] + }, { + "catenaXId" : "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2", + "children" : [ "urn:uuid:ea5510e8-4b25-4c48-b3f4-6be402539e07" ] + }, { + "catenaXId" : "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c", + "children" : [ "urn:uuid:3feea8a2-5636-409c-9759-5cbacdec1fd4" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955", + "children" : [ "urn:uuid:8df160ae-9b28-4195-85e1-1126b2742fd7" ] + }, { + "catenaXId" : "urn:uuid:cf30ad22-2484-4af7-b707-369fdf2c74e2", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", + "children" : [ "urn:uuid:963ca520-719a-4c95-be79-966b913775b4", "urn:uuid:2a5bf813-910f-4a22-98f5-fed447be8955", "urn:uuid:cf30ad22-2484-4af7-b707-369fdf2c74e2" ] + }, { + "catenaXId" : "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5", + "children" : [ "urn:uuid:36766c01-1b22-4b2e-946f-c7ce17cde8ff" ] + }, { + "catenaXId" : "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac", + "children" : [ "urn:uuid:be4c2c4a-cd5b-4e25-943f-63ba8b0722f8", "urn:uuid:d1e67bc0-15a5-4db6-8369-4bb6ff0beaf5", "urn:uuid:7ed5f4ad-ec0f-486a-9332-2d6f9b5e847b" ] + }, { + "catenaXId" : "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:c4463a01-bb47-4e9a-b1a1-a9b25d9f9616", "urn:uuid:2f03700b-32d1-43bb-9a3b-15aa7d387518", "urn:uuid:71a59043-adf5-4a15-819b-b30367943b40", "urn:uuid:262d8122-dc17-4dbf-9b9b-27089f4cfeda", "urn:uuid:9335fbed-8f5b-464b-a9e1-9d1aad1adb25", "urn:uuid:81fb31c3-1d85-4534-9add-d61ceb6d69a7", "urn:uuid:cc62908d-2274-4f1e-ae49-4a93a3bd5206", "urn:uuid:501da1d5-c94e-4370-95fc-01347945f44e", "urn:uuid:43273d0f-210a-40e1-ae58-4cdfab993cbe", "urn:uuid:01764477-69d5-4197-9a92-b291826b2fa5" ] + }, { + "catenaXId" : "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:0a31e00d-2e68-4bbe-ab35-d3425fff6ecf", "urn:uuid:37b53957-421f-41db-87b5-5ee151546c06", "urn:uuid:b668af6a-2c05-469f-b041-4c008b3bec29", "urn:uuid:60fd2b81-a208-4c50-b983-449df6722e8e", "urn:uuid:edbf9e12-15cf-4c16-b96b-ae6d2d5da67b", "urn:uuid:0e8704c9-102b-48cd-94a5-f0323207db50", "urn:uuid:2a6930df-9967-4459-b3a0-6458a693233c", "urn:uuid:01a0241e-17d8-4d57-a77c-c9effab89cd4", "urn:uuid:e0eb88e7-fb08-43aa-a466-c70741cab73c", "urn:uuid:0b024a14-17b6-4f21-ad0e-f16253e4e410" ] + }, { + "catenaXId" : "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:af42fc6f-a607-418e-8ff4-b236a672946c", "urn:uuid:ca1d1889-168e-492d-8771-0780dfa84efa", "urn:uuid:d8280947-b7de-4994-9ba3-0575e1d47db1", "urn:uuid:70670bdf-1595-4ec3-99fc-3bbe42f94dd0", "urn:uuid:966b9faf-ce04-4a3c-a045-5b407e5decbe", "urn:uuid:d95ea031-7337-4751-b95d-800888d5613d", "urn:uuid:f409052f-8462-4e92-bbb4-c660a8158ecb", "urn:uuid:7192d442-032c-40f8-a8c4-029536df365b", "urn:uuid:6e8e084d-d222-4acf-a7f2-760575d1a32b", "urn:uuid:f7df25c5-a340-466b-a100-c8efa2e3970e" ] + }, { + "catenaXId" : "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:347fa75b-a32b-4579-8844-938065c04854", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:1dd67d94-16bc-4c85-ba6f-f3cf62b8c010", "urn:uuid:00892c2d-a161-4470-b3af-de953596ed7b", "urn:uuid:4a09acbb-2765-4300-b48a-3ae5effc1b96", "urn:uuid:44679b74-d5a5-471b-9109-0b73a0c6b205", "urn:uuid:3cbf2d14-ee5d-4372-b5f3-b9f3cc2745b1", "urn:uuid:761552c0-8861-4529-9e6b-33a067282d7d", "urn:uuid:347fa75b-a32b-4579-8844-938065c04854", "urn:uuid:fb2f4020-9d87-4fb2-aaff-45563a8abfcd", "urn:uuid:c25cddd6-3e3f-41f5-91ba-0e48c566d4cc", "urn:uuid:7bf55394-1888-4e24-91d6-0261f30dbaa8" ] + }, { + "catenaXId" : "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:5c67f335-b309-4da8-88e6-4102d70ffcdc", "urn:uuid:c22135c0-f251-43dc-83e5-8dd76fe442d1", "urn:uuid:2918d755-4c1e-47bd-9e20-8c88d6b13fee", "urn:uuid:534302a0-b606-4e82-89d4-9bda559e8f74", "urn:uuid:49fe7701-7e37-415b-ac16-d223097e85db", "urn:uuid:c3e34571-a126-4f37-95ad-fea9a797bec9", "urn:uuid:816236de-7972-42b1-967b-ee2833eaa1fa", "urn:uuid:c5f61c75-970f-4ccc-adaf-afe2537ed63a", "urn:uuid:e17f1a98-5bdb-47f7-87cb-f5c024f3d2b4", "urn:uuid:c2932e7e-badc-4c0f-8568-961d31148213" ] + }, { + "catenaXId" : "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:3fd126da-41e0-42ce-850e-905686e6fe1d", "urn:uuid:f0c75852-d24b-4e8d-b430-0f645a3dbb44", "urn:uuid:d6de7b0d-c3f9-44e7-b0c6-5aaac020d714", "urn:uuid:88c1eb79-68f8-4921-acc9-97dc35ea9412", "urn:uuid:edc1bbfb-4a00-4584-90d2-1c931b70f613", "urn:uuid:38c6a888-2138-488c-96cb-a9c0f4086b5d", "urn:uuid:00c12e24-982e-4955-b4e2-5879abe6c25c", "urn:uuid:18643a60-c6a5-41bd-938c-1b2015013b42", "urn:uuid:ec668f58-bf01-43c6-a248-5c37839dc113", "urn:uuid:2835dd5c-7109-40da-91a0-87b7c63c6c3d" ] + }, { + "catenaXId" : "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60", + "children" : [ "urn:uuid:b095afa7-b789-44ac-ba00-67b181e5838e", "urn:uuid:64ea8e3a-8c76-462f-8415-e62463b65597", "urn:uuid:984761e0-d8ad-4814-9531-630eddec75ca", "urn:uuid:686bd1ee-e0c7-481b-a5e4-af1a8e5c2e17", "urn:uuid:426bdafd-d7d5-4202-9361-0b4bef92439e", "urn:uuid:5689c3e1-be9b-43e2-b134-7d42a2d3e66b" ] + }, { + "catenaXId" : "urn:uuid:0f259121-a4c7-4d3d-ad76-edf5afb2c303", + "children" : [ "urn:uuid:d1cca4e9-4cdd-46ae-a609-37aadabd5e88", "urn:uuid:628eb8e4-f7b9-4dc1-ac03-5bf48d1ec0b2", "urn:uuid:431c976c-f03a-444f-ae9d-ea13b02a186c", "urn:uuid:e75c34f3-d342-47f9-89a9-a86e51b757cc", "urn:uuid:fccbd46b-36aa-4a9d-9c54-5bcdfaee60d8", "urn:uuid:8f479623-98c9-4375-910c-1c41124d27d3", "urn:uuid:a6fcd120-5d1d-4262-ab0a-7927e118d1b6", "urn:uuid:ad5a606f-e65b-4b56-a822-2854f49045eb", "urn:uuid:9132682c-304a-444e-bc3d-0771722e0d7c", "urn:uuid:303eacbb-cd85-430a-8754-ec86997ebe63", "urn:uuid:e6d3af8b-f85b-4353-b79a-2ab56ad908ec", "urn:uuid:c9a05628-d711-4929-b353-f62e7b96ef87", "urn:uuid:78ca3a8f-80e0-4455-bef0-52b279428a52", "urn:uuid:2f29abca-0e24-47e4-891d-86a4fe452424", "urn:uuid:49959f48-848c-4ed3-ab4a-d37eb4d5902d", "urn:uuid:0a6cfd67-37dd-4306-9883-946e2a685446", "urn:uuid:2a01a085-1f75-49a4-a5ad-5d9a707b7949", "urn:uuid:6b85b137-39a2-44fe-b65e-bb4d911ffdcd", "urn:uuid:8ec907cd-e38e-4491-af52-5eacccdfb6fd", "urn:uuid:536453ae-d4ae-4b84-8ce5-dba91a0761e0", "urn:uuid:7c09fa59-b540-479b-826f-a2cedc94d65b", "urn:uuid:5a19279c-9a4d-4831-835e-44f49aad1b5a", "urn:uuid:9d9a5f35-159d-4a06-91ba-dd641012cd24", "urn:uuid:dc3e2003-f524-414b-bc98-4ed7748be4f1", "urn:uuid:d3b1ba5d-f1d1-4fa7-8f4b-34f650886aba", "urn:uuid:5417bc75-ac1c-4eb7-9ee9-1b58179f8cd7", "urn:uuid:49f022b4-8a24-4ce2-8f4b-b588b9854019", "urn:uuid:20b8a583-9218-4771-8b5f-bc1bce36e819", "urn:uuid:00f10d14-bfc2-4695-91eb-e5a9f2bb29f1", "urn:uuid:d21d60f5-e340-447a-9f62-7d305d146a23", "urn:uuid:107cc310-3fd5-4f8d-b5fe-84482dae4eac", "urn:uuid:44c39c4d-62a6-4ff3-aa7f-780108794a60" ] + }, { + "catenaXId" : "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937", + "children" : [ "urn:uuid:f0304a0d-6a03-4c44-b433-a0c0235438e4" ] + }, { + "catenaXId" : "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c", + "children" : [ "urn:uuid:4e143b59-f638-437d-962d-4bc32ac01ac5" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd", + "children" : [ "urn:uuid:6ea156a2-e0fd-4922-84f4-02f6b3ba1552" ] + }, { + "catenaXId" : "urn:uuid:cf764f6c-5e57-4001-ad1c-62e1aeb04e5b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", + "children" : [ "urn:uuid:121a21a0-856c-4819-92e5-b69385a6a571", "urn:uuid:c2ceb44a-550d-4c6a-afc2-aed3c39d1bdd", "urn:uuid:cf764f6c-5e57-4001-ad1c-62e1aeb04e5b" ] + }, { + "catenaXId" : "urn:uuid:b7230e91-645e-49af-897f-9a8289061926", + "children" : [ "urn:uuid:b6670a4f-528f-4047-a733-c22ad8d4e246" ] + }, { + "catenaXId" : "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637", + "children" : [ "urn:uuid:84f80f09-1ece-4bb8-b43e-d65cb747fe66", "urn:uuid:b7230e91-645e-49af-897f-9a8289061926", "urn:uuid:c8a971a8-bec3-4f4e-91cd-437fa48279a5" ] + }, { + "catenaXId" : "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:3453cc5f-b4ff-4ed8-a86e-21efa42ca2f8", "urn:uuid:00f98155-263e-42db-93a5-e0501f282f10", "urn:uuid:1ec6544f-ae99-4817-b7bb-9d58d5273344", "urn:uuid:67a9968c-1d5f-4b2c-90ca-9f913fb6e14c", "urn:uuid:ee54dfd5-5512-4ec9-939d-29f01e9fbb5d", "urn:uuid:ca8027da-5c22-4e54-8abe-1f2afbe8ac3f", "urn:uuid:6a0ee706-b280-4470-8153-8c5db3284b9d", "urn:uuid:ea7020e4-b205-4e3d-aa54-2b4fbec821a3", "urn:uuid:48e32b6c-0f78-412d-a630-b0a1abf5f75f", "urn:uuid:8e8cefae-399a-4858-a523-f9e3e501343c" ] + }, { + "catenaXId" : "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:aa0a1f1d-a9cb-41c7-ada7-a01a93dee9c5", "urn:uuid:d6718cf8-4c53-4068-b608-eaee70d7aef3", "urn:uuid:336201c5-d2cf-48a3-a07b-f40eeb4c4bc5", "urn:uuid:ff2a83b6-1a01-44b4-995f-87047ed388f2", "urn:uuid:2181e6f0-fce9-4963-9d89-b49d21395e7e", "urn:uuid:044b3eea-8379-4a3e-95ca-3e581a2fa768", "urn:uuid:68045b17-7092-4205-9791-e8beb66b8b92", "urn:uuid:f919435f-a4df-4313-adac-45e20d44255c", "urn:uuid:b4c93c44-6217-45cf-a01a-2e3b300933ef", "urn:uuid:b7896bc0-1090-4a70-9f1f-7550d13a3a8e" ] + }, { + "catenaXId" : "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:1f07ae7c-2828-4abb-893e-c426c5d27422", "urn:uuid:125a5db6-a0a3-4310-bf8b-4c2ba228eeec", "urn:uuid:55bf3e0d-41b7-41f3-a752-ef6ce2f871a9", "urn:uuid:834a42f4-5739-4178-9c57-aed9a886889a", "urn:uuid:f6188ea9-c0a2-4ee6-b6fa-c39b4f999557", "urn:uuid:18bc460d-2b4c-48ef-8abf-5524b247fd2e", "urn:uuid:a94d45f9-ce32-4caf-aff1-c01047e05b39", "urn:uuid:e1539552-092e-4113-a589-7aed3057e57b", "urn:uuid:babf9e0a-c1f7-433e-b973-5f8345c52982", "urn:uuid:884781ed-1d60-4871-866d-1796eb6b097e" ] + }, { + "catenaXId" : "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:18485718-4e23-451e-ae02-ee412f647061", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:c19092bf-f3ff-4f41-b028-47a4b95a4a4f", "urn:uuid:00363161-5432-4d0e-92c9-b7bfbbf073d2", "urn:uuid:8d76e553-4f76-4e50-a413-c24769f2d434", "urn:uuid:2e900e64-24eb-4562-8105-852e41cd9230", "urn:uuid:2b011cec-504d-47ad-abdf-bac3402ab8dd", "urn:uuid:49e5c221-ee6e-4e74-8632-592b726edb79", "urn:uuid:ddfd5577-65d4-42e7-b1d8-0d3e86a842dc", "urn:uuid:1833f4ca-5d0a-4469-8913-fba89d8a69e5", "urn:uuid:d1206069-44fd-4c10-9059-efeb5f61aff1", "urn:uuid:18485718-4e23-451e-ae02-ee412f647061" ] + }, { + "catenaXId" : "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:07c22736-3033-4645-994c-e16c603ea140", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:38d7dd83-1ef6-4bb7-8739-6dc8fb5b85f1", "urn:uuid:51f59500-9db2-4318-89ae-e84a976242b2", "urn:uuid:eab4eb3d-8069-4333-b0ce-144f81d33a99", "urn:uuid:95761115-fe6c-43e5-ad12-eaad6f3be9df", "urn:uuid:d61c9934-57e8-441f-b17c-d3bc94a1e8fd", "urn:uuid:e3307a1d-9fd1-4ce0-b994-c82126e18aa4", "urn:uuid:59cfb649-960c-482d-a386-5b1dbd2b93dd", "urn:uuid:07c22736-3033-4645-994c-e16c603ea140", "urn:uuid:f0df04f8-cbda-4277-b39d-15736fdfeeba", "urn:uuid:17a4d1dd-8a22-4a55-9c1f-fd35540de894" ] + }, { + "catenaXId" : "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:9c3e88f4-e0cd-477b-88f1-ee0e0fdc45d8", "urn:uuid:c585210b-95f1-4200-83e5-85548d70ae58", "urn:uuid:dc5deac4-9c40-434d-96b4-26672dad6bb6", "urn:uuid:bc79f749-33dc-4ac2-8659-41a064e15e3f", "urn:uuid:99e180b1-d22d-49ec-b4f9-f2d56ee10c90", "urn:uuid:74e00afb-d6ad-4e11-8537-9b143dc029a3", "urn:uuid:f92493d3-6aee-4bfc-b3b6-bdce76a20e16", "urn:uuid:0068a12f-2f23-40ce-afe7-42930905d4fd", "urn:uuid:e4f1d751-6f48-4b6f-93aa-82a0f8ffb02f", "urn:uuid:6458bc94-8cfb-4edc-8f25-7160962e9573" ] + }, { + "catenaXId" : "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa", + "children" : [ "urn:uuid:c8504041-78f4-42d4-a14c-a851b2862f2d", "urn:uuid:0a96d5b8-e6bc-436a-b3b4-ee440e0ca653", "urn:uuid:fcc98032-5e4e-4700-b354-2e7e44bd5fbf", "urn:uuid:0a6225c7-5f77-4d25-90bc-d78b02b2a375", "urn:uuid:ff647d09-b996-43f5-b0b3-869f6d717018", "urn:uuid:427a206d-cd87-474f-8b31-f38a03213b6b" ] + }, { + "catenaXId" : "urn:uuid:c2074f3a-78d2-4495-b533-631309edd64f", + "children" : [ "urn:uuid:443fdeee-3d6c-4bc8-81f1-007b1c5aba03", "urn:uuid:ace2e47b-4eac-4aa6-82b4-e391328b9937", "urn:uuid:f5ed8072-1995-46c6-a28b-23032150323c", "urn:uuid:3852c430-b854-47aa-a0ed-139cae6abbf8", "urn:uuid:ba5e8a8f-f786-4fc8-8f1a-8041797faf1a", "urn:uuid:aa11babe-ad64-451d-938a-1ce3cfcb3bf1", "urn:uuid:954db4a3-4bec-4a06-b0d0-205bca2da20b", "urn:uuid:15e8dbeb-e744-4ed1-87a3-4a539dc5274b", "urn:uuid:f49b210f-c19c-4bfa-85e0-857c263789d0", "urn:uuid:61e08f18-48bb-479d-9514-c7bea8cecf42", "urn:uuid:f3b0a665-7c8c-4c79-9ba5-beb9c3f138df", "urn:uuid:04a4d57c-6c36-4aa4-b97b-ae8b633d67f1", "urn:uuid:e71885f8-497c-4e37-af9f-6315c9f9817a", "urn:uuid:dbc69f18-2ec1-43a9-b2df-02a943921466", "urn:uuid:0f6cc463-6e84-4fa1-9526-382b625e259d", "urn:uuid:65f92cbb-2639-4f15-8c6a-30d81e34141f", "urn:uuid:d2438e43-1a52-4ae3-9c9c-47cf6636e206", "urn:uuid:97d40e77-d5a8-4c7b-a5db-2488c1c4e2d8", "urn:uuid:f7113e6d-c12d-49ad-aa36-cc2678d7df3e", "urn:uuid:50ce9389-2ccb-4945-b336-1617e4679863", "urn:uuid:f0b58fe0-d932-4df1-acc1-1eeeeac1103f", "urn:uuid:e4875d28-828a-4dad-9482-97a0dd08c921", "urn:uuid:5a2ae04e-8db3-45b7-af3d-d6da92dfe3bb", "urn:uuid:479b7da6-3529-4f02-81dc-826c145f5afa", "urn:uuid:e84c731a-3221-4002-9e61-dd500978ee81", "urn:uuid:ed9ac0b8-628c-4a5e-bfc3-cbec70f2a1d3", "urn:uuid:ea1a8c53-56a2-4dd6-af09-3e722d7d85f0", "urn:uuid:bba31f8d-66b6-4286-9f52-f44940513676", "urn:uuid:982b4856-c029-41a2-a593-56f5d38a9f81", "urn:uuid:587d6020-4f76-43ca-b25a-0c5f843dfafc", "urn:uuid:f2e4b772-3126-4a17-9bef-f774c18d0637", "urn:uuid:745cf1be-eb2a-405f-8768-de86ce7a0baa" ] + }, { + "catenaXId" : "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7", + "children" : [ "urn:uuid:cd2e4d05-7d85-4216-9303-8061926c4b9d" ] + }, { + "catenaXId" : "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a", + "children" : [ "urn:uuid:8498accb-798e-4f2b-b498-d08c62abdcac" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b", + "children" : [ "urn:uuid:c6a52729-d91e-46ef-a013-fe627d6ff2c7" ] + }, { + "catenaXId" : "urn:uuid:e19f47a5-6888-415e-b322-ee3999fe5dc3", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", + "children" : [ "urn:uuid:a4a729c9-96b8-43b9-ac32-ee9979304e66", "urn:uuid:1898fb06-b7c3-4a2a-9fa9-fa5741f68f6b", "urn:uuid:e19f47a5-6888-415e-b322-ee3999fe5dc3" ] + }, { + "catenaXId" : "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04", + "children" : [ "urn:uuid:31a8318a-40f3-4b00-8edf-47fb05bf4152" ] + }, { + "catenaXId" : "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9", + "children" : [ "urn:uuid:39413240-eecd-4379-8c0e-a5d074178b5d", "urn:uuid:a0c6ee84-28fc-4a36-83ce-f3e5f07e1f04", "urn:uuid:4ffded1a-2e22-44b9-804d-3c72189bf83f" ] + }, { + "catenaXId" : "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:807f06eb-9d74-420f-bdcb-2a618e239cdd", "urn:uuid:a5752d8f-0c58-4460-8d02-26c00d7db631", "urn:uuid:320485b5-ce4c-4e5c-a28e-3d755b70f433", "urn:uuid:ff111c16-c096-4365-bb75-f4b8c2cf4392", "urn:uuid:b0ab715f-6728-4dd4-ba16-4fcaa6168bf6", "urn:uuid:6f57807c-b752-4b1c-a901-85af999de38c", "urn:uuid:53eb004d-ce1d-47db-a02b-f1ba0d8ddb3c", "urn:uuid:41bf0358-013e-4279-93e3-818f4dde18f4", "urn:uuid:21280adc-7693-4d56-a5fb-fa324f23563a", "urn:uuid:a4254d94-8646-4ac3-8946-c7054bdbf3df" ] + }, { + "catenaXId" : "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:713f3027-4ae0-4332-a57a-b15699780de4", "urn:uuid:8f243ac4-1b38-424d-ba90-6aabeb89d406", "urn:uuid:208048d2-a396-4bd6-ad31-a18954c1ec09", "urn:uuid:925885e8-5f09-450d-9491-343e42ab9ae5", "urn:uuid:0576c69d-f953-4691-87ac-650f6c4530b5", "urn:uuid:2083abac-945a-4a3b-b525-9b421ec916d3", "urn:uuid:f3278fa1-f05e-4616-a44b-2e6712789c96", "urn:uuid:167b34c5-a856-41a2-8b5c-5dac4f568b4b", "urn:uuid:5917b05a-771d-4f55-9ca5-f737a1c6b122", "urn:uuid:c8ebd278-ca85-47df-825d-f0e033c7abf0" ] + }, { + "catenaXId" : "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:a5033c0f-f2de-4755-a3c2-b01493b4cb40", "urn:uuid:b92d6dbe-bad3-4485-9bdc-697a54266bb6", "urn:uuid:109a800d-2d2f-4eba-8717-d64b26a08e39", "urn:uuid:b622bd1c-2fe7-4902-b33a-e6e7a11f4daf", "urn:uuid:781a3d7e-6517-4fd6-9270-1a9fba3254b7", "urn:uuid:a1df1b5c-d028-4e8b-a4da-3011494bc842", "urn:uuid:f0c005f6-9a09-4de5-b381-838995dc00de", "urn:uuid:2e91ebc7-5026-4eb4-a6d5-64d3604ae6da", "urn:uuid:04d2ef3c-0485-437d-9a8e-d77f5d348649", "urn:uuid:70ec6c1f-c0b8-4589-b054-26009f90e1f7" ] + }, { + "catenaXId" : "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:1614ca40-6f69-415e-8e4f-22729fdbbc49", "urn:uuid:8f3b80ed-e65a-4a0e-9d6d-034ac283f5d8", "urn:uuid:7888a0be-49d8-448c-ae45-f66948f69f58", "urn:uuid:a416becd-ef66-4f1a-a0f6-e8c2b1a5d983", "urn:uuid:827a7a63-a353-4380-a183-7ac59eeae403", "urn:uuid:e4b6ad45-916e-4019-9f20-fa0ea0b83b55", "urn:uuid:4b0f1f55-9012-45d1-97bb-ccf9a2ea5ba1", "urn:uuid:5344edc3-d92c-4df8-b454-a0a6057e4157", "urn:uuid:58d4a949-6d3a-4a6d-8a2f-7d85fc6489ac", "urn:uuid:dca32a0d-bb2d-42c3-a55f-05988a0e29c5" ] + }, { + "catenaXId" : "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:80ee01e5-1a89-446d-b0fa-c74a64ecc453", "urn:uuid:2a6e9c4b-7c6a-4629-b97b-0ab55b5ee6fe", "urn:uuid:7b8f900b-1937-4600-b7ba-3f7e75d15ee3", "urn:uuid:fa45d49b-ae2c-458a-ba1b-e1086436edca", "urn:uuid:87d31d1c-78e8-46d0-807b-e6c574ce1517", "urn:uuid:d6787a35-4d8e-4dba-b18a-eb69ecd3293d", "urn:uuid:2dfa04b3-3506-453a-a2fe-c26f253d5793", "urn:uuid:7df1a4ba-ed3e-4b5f-bdf9-2d19ccaed465", "urn:uuid:00d705d0-396b-4754-8dca-03618fa0d967", "urn:uuid:46e303c9-bccd-417b-8aa9-b9ede871e997" ] + }, { + "catenaXId" : "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:254e82ac-dd84-433c-9676-76f94026a66a", "urn:uuid:c12495c9-970a-4b32-a83b-24c0beb62999", "urn:uuid:8f6234ed-966c-4954-a449-b4e9baa6790f", "urn:uuid:e377882b-189b-4a22-a829-abce6cdff2ab", "urn:uuid:ca81572b-248a-43f1-b44e-af8ea4e511bc", "urn:uuid:eec94de9-574d-4324-907d-55e687ce6155", "urn:uuid:3234003d-5ab1-416b-bb09-df046bf7a302", "urn:uuid:50a20a28-d82c-4c38-92e7-948fd79cb16d", "urn:uuid:6ccc4a90-dbab-4cde-80dc-2c26c5390d83", "urn:uuid:931eb11e-2fb3-4e69-9a3b-3023bddf6b81" ] + }, { + "catenaXId" : "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0", + "children" : [ "urn:uuid:b191357c-f278-498b-aa88-b63ee40d980a", "urn:uuid:0261f094-599b-4617-8ec8-a564782d7291", "urn:uuid:156cc903-c50d-4f99-ab87-eb902f869fbf", "urn:uuid:883b7640-5d7b-4f8e-9372-c199fa2d561d", "urn:uuid:2a2933cb-ad9c-44e2-9360-bf9f4dabbe99", "urn:uuid:fc890083-bb90-492c-b968-cef7c58cc13d" ] + }, { + "catenaXId" : "urn:uuid:86cbff61-7c7a-4262-832c-76ed414f7990", + "children" : [ "urn:uuid:0f6b98f4-50ec-4713-94a5-f0827ebe9af9", "urn:uuid:ab8e0e9f-98d1-465e-b592-778b1c4ea7a7", "urn:uuid:f2bffe3e-e8fc-41d4-81fc-ef0d877c064a", "urn:uuid:ccab5e8b-ff32-4644-a121-78f2509bb617", "urn:uuid:e3eed488-e631-424b-88a2-668dfe223a26", "urn:uuid:87c77597-8936-426d-bee8-56bd55b7b9aa", "urn:uuid:704998a8-f4cb-4845-88a6-8244bca1ae26", "urn:uuid:d7a82260-0dd4-4644-a812-04eac0c52bf4", "urn:uuid:20b62ec3-20a3-4420-9135-e7f309e43bc7", "urn:uuid:6efaa21d-d2a9-433e-922b-cb73bda7be67", "urn:uuid:d13410e5-9a80-459c-84e0-c00aa46f4899", "urn:uuid:30b1ecf4-07e6-4f77-9303-002ef52f0934", "urn:uuid:12340fac-5386-4166-b2a4-3d8103093ed6", "urn:uuid:f550ac0d-c149-4663-878b-6b8bb53a2bf6", "urn:uuid:4447cbd1-9a9e-418d-a4bc-ac89f059f7a2", "urn:uuid:0213b277-fe9f-4686-a386-6f47e393a6ed", "urn:uuid:a0a3f1ea-7e69-48ae-a546-b822537b8046", "urn:uuid:2bf6e90e-c9d9-4bc9-8ab7-e56ce3b9d060", "urn:uuid:c8f0ea47-2774-4dd4-ac84-1abc35433250", "urn:uuid:578689e4-a80f-4952-91b3-799d5140f8ab", "urn:uuid:a5051b48-48a8-4697-9067-f7016b0c8421", "urn:uuid:e7a64b63-b518-4ea7-ba39-3c9306c12f9d", "urn:uuid:172c7fc5-59dc-4959-bbdf-93dfd2493504", "urn:uuid:79da6a80-19a0-4552-b5bd-754416af6242", "urn:uuid:23ab16fd-e8bc-46c2-a44c-9d951f55b6f0", "urn:uuid:4e21ffa2-e6cc-42bc-b863-fb94d6f3b87b", "urn:uuid:f957021c-207b-4f71-ba76-12b05e7e0990", "urn:uuid:701122f8-8378-4cdd-b960-5f457b78d2c0", "urn:uuid:bcdac515-ca3f-4c41-b578-63d9afac1120", "urn:uuid:5ccb723f-6337-49ec-b53c-172d500e9733", "urn:uuid:ee6ae7df-e89e-4702-a027-e627a9afb7c9", "urn:uuid:0181e418-0082-4320-b097-0b7c2bedfda0" ] + }, { + "catenaXId" : "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69", + "children" : [ "urn:uuid:ee644095-5b98-4809-b738-cbf217a58fc5" ] + }, { + "catenaXId" : "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4", + "children" : [ "urn:uuid:b5419e41-d580-4f99-bf28-fd9b68c56239" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80", + "children" : [ "urn:uuid:21879509-3454-4d59-8ec3-e5690f0337e7" ] + }, { + "catenaXId" : "urn:uuid:4c48949d-41de-44c9-a3d3-8bb174ac66fa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", + "children" : [ "urn:uuid:8b2dcbbd-2694-4cf6-abbb-b5d5bc36b35c", "urn:uuid:9eef73ec-0ed9-4efc-a960-5ce4575d4d80", "urn:uuid:4c48949d-41de-44c9-a3d3-8bb174ac66fa" ] + }, { + "catenaXId" : "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a", + "children" : [ "urn:uuid:b6578651-90b2-4f7b-a0bd-4370417ca074" ] + }, { + "catenaXId" : "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37", + "children" : [ "urn:uuid:1342124b-9162-43c0-9285-8d24bc567c81", "urn:uuid:9541e1ce-b398-463f-a93e-9f50ba0b851a", "urn:uuid:635bf5c7-0df3-4543-b6dd-ba3a3813fe35" ] + }, { + "catenaXId" : "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:d70040bb-bc47-4099-9305-0baecaf69903", "urn:uuid:58322920-1018-41b8-b8fa-1473592334f2", "urn:uuid:e58ab58c-2bcc-4c51-9667-6d0bc063086b", "urn:uuid:2034a6fe-3b87-495a-86a9-f6bf5d72f5e8", "urn:uuid:52d63a25-767c-4e8c-a3a7-1ce65376f083", "urn:uuid:36847625-533f-416f-85a1-ee54e0d741b2", "urn:uuid:e06e9583-cf4a-4a2e-a198-ba9a4f5eec94", "urn:uuid:dd859fdc-8c80-4451-b856-062cba48d8fe", "urn:uuid:22ba7219-1346-4aff-9fd9-44c59417ac71", "urn:uuid:95c45f5e-e075-4d81-8744-c192f553c49d" ] + }, { + "catenaXId" : "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:b6e47151-255c-416b-9289-3b3377fae7a8", "urn:uuid:f69bb7f6-fae1-439b-b0c9-7923a3fde2c8", "urn:uuid:4a1f0b6b-25c5-4db6-9680-5de5bd4e4635", "urn:uuid:b88785cf-ac3b-4cbf-82c1-e14d190a7395", "urn:uuid:9c3516a3-7717-4d84-b791-72c16bfc9ae7", "urn:uuid:b8205102-850b-4553-bcce-c96e3cabd66a", "urn:uuid:2bc6022f-6c76-4547-8292-68934ecbb799", "urn:uuid:fe2e3b8c-cfda-4cb5-ad17-6d4e0cff569f", "urn:uuid:716c81cd-a35a-4290-947b-697cbdb3f715", "urn:uuid:c960771d-a6a1-428d-b68a-07d4fc889096" ] + }, { + "catenaXId" : "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:24a2e602-8ca6-48dc-b644-b2c6f741f678", "urn:uuid:efc06595-569e-43ef-932e-9295f00f5847", "urn:uuid:ad4fe41d-7d64-4a6b-8c8c-a8a4516b7034", "urn:uuid:7b3081c5-1b9a-499b-8a1b-5feabb3ccfca", "urn:uuid:d47ef9eb-a59b-4c10-b3d1-5d1f06d1c181", "urn:uuid:a9238b59-e6e2-4dcb-9a8a-667d616ec16c", "urn:uuid:fdd3cf4e-1802-4001-b2f8-d40f59a51d8c", "urn:uuid:6029d795-2bd0-4be5-9838-bb384e13a0e7", "urn:uuid:e15e9608-73bf-4fff-a4c4-05fe4960e067", "urn:uuid:d210b489-1be8-4260-8aff-ee0772dbb0fc" ] + }, { + "catenaXId" : "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:111d57a4-f9e5-4948-8117-be23b73cc988", "urn:uuid:baeaf2b8-704e-4788-a4f6-6db7fc56d7c6", "urn:uuid:b176037c-0184-4839-9094-7cadb9acf8eb", "urn:uuid:44dd49c1-3980-4463-a6f5-53aacaeff8ba", "urn:uuid:57e6f55d-4757-4037-9a3d-442d974e5d1d", "urn:uuid:c178ed39-f8b7-4b30-acd0-c507b213a4f4", "urn:uuid:3071ab05-a253-4dc1-9a80-d9a5f220f491", "urn:uuid:dbd00ee5-67c7-495e-8ee9-ff21d87ed909", "urn:uuid:0a92b1a6-15a2-40e7-b441-d663139fc302", "urn:uuid:eb23047e-8448-41ab-ba23-194ba9772628" ] + }, { + "catenaXId" : "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:24faab64-718d-479b-913d-9808f3972c07", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7255efed-2373-4993-80a5-746f83246e18", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:6c50537c-7989-4e25-be5e-0e6c43801ddc", "urn:uuid:24faab64-718d-479b-913d-9808f3972c07", "urn:uuid:574c8811-78e2-49c7-bb82-f3eb5c042c10", "urn:uuid:19f3f233-d9a8-468b-b03c-274fca49d8a3", "urn:uuid:ade1842f-7c11-47a5-8618-2ffa82dc758b", "urn:uuid:7255efed-2373-4993-80a5-746f83246e18", "urn:uuid:c59d0cb3-89c7-4e81-b1f9-6d77e8d9fbf6", "urn:uuid:990e1a58-e9b0-4cb7-a969-66630e6b2d2c", "urn:uuid:947396ad-ebbc-45b2-90ef-ad776827db4f", "urn:uuid:20a4d0b8-fd6d-444c-87a3-46ef2a134e24" ] + }, { + "catenaXId" : "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:00ebd1d6-a7d4-43b0-815f-944155c52d45", "urn:uuid:f9e4327f-1a27-4276-a410-1772265d74df", "urn:uuid:bb8e4ca9-e688-4af9-b4af-15ce1c3c0abb", "urn:uuid:af94ca41-1eac-44e6-8c7b-67ce7bb95a2f", "urn:uuid:4f28ba30-eb70-4cf9-90ae-22a621258175", "urn:uuid:ed3a5907-6920-4ead-acc7-e0bc204d1614", "urn:uuid:ab1d3f4e-75ca-4f38-86e9-af4ecf69894c", "urn:uuid:9a5cdfc2-51f7-49a5-a690-e13c541c545e", "urn:uuid:052148ea-8b6e-40aa-a1f5-293479570ecf", "urn:uuid:3278abb1-be07-4607-ad2f-f8de2ce9fe29" ] + }, { + "catenaXId" : "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8", + "children" : [ "urn:uuid:9665f288-c65a-4a03-b7d6-b633da10ceb4", "urn:uuid:5cefaa68-8215-4305-8717-9361c25324af", "urn:uuid:aa8a809e-015e-41f6-a92c-02cdf2f72c66", "urn:uuid:efb809bc-5196-4ae4-9f85-c94f80fff3d0", "urn:uuid:478aff16-abe0-4d10-bd98-48554e707a22", "urn:uuid:cac4e958-ffb4-40be-bc1d-8e27dfd705d7" ] + }, { + "catenaXId" : "urn:uuid:08ce0989-d78a-4c59-9e36-31ee7f54e134", + "children" : [ "urn:uuid:5c6ecb23-8ebe-48cb-8f0f-c643253ae0a0", "urn:uuid:73b12ef8-7a1b-4284-b692-243a370f3d69", "urn:uuid:2ce860d7-b08f-4730-8ecd-4f97ca89c1d4", "urn:uuid:0a65e4da-1be7-4f8e-92ab-a89890cef613", "urn:uuid:b30292ef-5a7a-4962-ac6e-ae444f72eaa6", "urn:uuid:aa865787-040d-43e3-a54a-9853f3bdfb13", "urn:uuid:6260a6d1-edff-4809-9077-db3a0ebedf65", "urn:uuid:04b45fe5-58df-46b8-ac71-09022a6d0a23", "urn:uuid:6005cfdf-fdb6-44e2-a41a-7011d10c936c", "urn:uuid:9563f6a3-d44a-42a7-8692-6c06ea802d4e", "urn:uuid:e4fdb8c5-ad96-46fd-a03a-2741ab629452", "urn:uuid:92082020-c30e-4a2a-99b5-6e1f4e10e7c1", "urn:uuid:8181e7be-ea40-4932-8c2d-720a48dd2e26", "urn:uuid:7a12879c-ac7b-4f12-8e3f-b5168265c44a", "urn:uuid:60a029cf-cff9-4de1-b814-8112b4ead680", "urn:uuid:136bccf8-17b6-433a-aac6-40935a4a8311", "urn:uuid:e3f25d7f-8f34-4d67-a7d8-e84d5c4fe216", "urn:uuid:eaed6ab3-da02-40b6-928d-5fec822c2a15", "urn:uuid:8f38a4e8-6459-4d47-a620-f23440dabca7", "urn:uuid:be628c13-7180-4df2-aaa0-a4d2d7bb86a9", "urn:uuid:86a9803f-8ff7-4edb-a209-44a4da4d1c28", "urn:uuid:ffaeeab2-8828-4d6c-b358-1fa5b84d7433", "urn:uuid:d46ad917-150d-4e12-96cc-1dd1a6bc004b", "urn:uuid:5005827a-b853-42b2-bb2d-70d1b82f5861", "urn:uuid:c8b0f0f4-ac94-47c2-8c34-c4e81995ceaf", "urn:uuid:a96d8269-80fa-4ea1-9a25-63821e98dd6c", "urn:uuid:725d5c01-22e1-44d2-8c16-55713f6d6c93", "urn:uuid:4f624c91-519c-4961-af5d-0d81371984b7", "urn:uuid:8c01e174-87b8-4969-82ba-07bef629000d", "urn:uuid:32caea0c-1c1e-4fbb-9a86-b0b254ca9b60", "urn:uuid:f211a7e1-3660-4faf-973f-aec438d8ff37", "urn:uuid:e595dd2a-88f8-4a75-8fff-5b4f7b229bd8" ] + }, { + "catenaXId" : "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0", + "children" : [ "urn:uuid:a2c5b932-9670-4f5f-b0e5-73fc9f700819" ] + }, { + "catenaXId" : "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8", + "children" : [ "urn:uuid:2b3b2f67-bc1e-40ae-ae4e-7c0a0e201f65" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d", + "children" : [ "urn:uuid:e71ae952-c811-48ff-994d-1ba6bff89d5f" ] + }, { + "catenaXId" : "urn:uuid:a712c3e0-58b1-4d2d-81f0-0400e8b8cabd", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", + "children" : [ "urn:uuid:9a6b6559-e6ec-4413-a3cc-381d66d5fbcc", "urn:uuid:5deffc7f-cf1c-428c-a75c-4b5279134f9d", "urn:uuid:a712c3e0-58b1-4d2d-81f0-0400e8b8cabd" ] + }, { + "catenaXId" : "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2", + "children" : [ "urn:uuid:0d949893-55cc-4100-a1ce-55f298037fff" ] + }, { + "catenaXId" : "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334", + "children" : [ "urn:uuid:19357b27-0254-4a1c-b4e8-17eb3b2776bc", "urn:uuid:4ba3650e-b095-4d98-80ad-de5a08fb28d2", "urn:uuid:ac65bc6f-6882-4136-a31e-c2a1ff24859f" ] + }, { + "catenaXId" : "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:d10920ad-0272-4f54-90e6-3cc52c49afbf", "urn:uuid:af545a4b-88f2-42c3-a3da-9bcee86aaec1", "urn:uuid:0732bdc4-475d-4a93-b07c-a1cecaaa042d", "urn:uuid:01736613-ed7d-4d64-a418-16b91c92a7a2", "urn:uuid:1253b964-472a-40be-9abb-f80976af34aa", "urn:uuid:a9e2c40f-3033-4b60-a3a9-d0ca98c78202", "urn:uuid:cffd6c8f-e26a-4de3-8770-212b4d67db6a", "urn:uuid:a17da825-c284-4c39-80d2-f2ab6d327b4e", "urn:uuid:4945b72e-0396-4747-b6d3-879d87dd1377", "urn:uuid:f85e3691-d10e-41e5-ac3a-a9a7300d2330" ] + }, { + "catenaXId" : "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:8a58d660-a3ba-4220-b3e5-2b53e7f7403c", "urn:uuid:7a068365-ed1d-46a0-99b6-e5f6cbe02577", "urn:uuid:59d99bd3-6b91-4326-91bd-aa5532dd1e0f", "urn:uuid:dd7e17fa-65b1-47fa-95ba-d2badacb3666", "urn:uuid:456c1a36-debb-4abf-91f7-c9c13b8488d6", "urn:uuid:541d7be3-6206-41d5-b022-3c85159ab219", "urn:uuid:388d594c-1226-40fb-8bf3-a0e06264b392", "urn:uuid:6df97cad-7d20-411c-b96d-c038580c5d91", "urn:uuid:e40e978f-58b1-48e7-a766-51eee3929bc4", "urn:uuid:abebed3c-809d-4c68-ae96-61c33a686f65" ] + }, { + "catenaXId" : "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:be1d7c33-1d63-4cd0-88f6-93565016eba7", "urn:uuid:5986e9a3-eab8-476a-ae4f-83d9423877d0", "urn:uuid:58b3f1a1-dde5-4964-9940-bfad910e3025", "urn:uuid:e7bb56a4-8c52-4b2f-a038-668825e3e9d2", "urn:uuid:a542701c-7fe4-41a0-99e8-32137d2981d4", "urn:uuid:09d39691-5dde-4061-8e24-35ed62d8a8ad", "urn:uuid:60e80a65-f163-4ca3-8575-710c217efa44", "urn:uuid:b3d296fb-7358-41ce-99ce-1e3e106a839f", "urn:uuid:9caba419-9b5b-4ce3-ac95-881b235b1a80", "urn:uuid:45289bfd-70a4-4f88-8997-6777d92a037a" ] + }, { + "catenaXId" : "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:63fad687-a1c3-4845-82dd-b8dce7282fbf", "urn:uuid:8dc51d84-00d9-4448-828c-1753a6c2a013", "urn:uuid:44654b55-5cb5-4727-91de-e56c531ac650", "urn:uuid:04803bbf-389d-41a4-bb8b-4ad62f4069bb", "urn:uuid:0b1bf8e0-48e2-404f-81fa-439424683665", "urn:uuid:853989f1-8b5c-44f3-8fe6-2ae73cb2ddfc", "urn:uuid:b79b4816-7d5b-4e61-9092-a9ddcbb89fcb", "urn:uuid:d79a9af5-1976-4132-86ca-50e8b796894a", "urn:uuid:3f4ac145-8e40-4638-a3ce-9bb3691c4646", "urn:uuid:ed65918f-8247-4220-90a6-3d11682f983d" ] + }, { + "catenaXId" : "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:51832301-04e2-4ef2-8cd0-e1699d3069dd", "urn:uuid:6f124cf3-bb1b-4565-b7c3-4cce7e4ff262", "urn:uuid:11d5526d-fc0a-44b3-965a-5fc60087e83a", "urn:uuid:619a6592-6f19-484b-a05d-8e4875079102", "urn:uuid:8a7d0b5b-98e5-4e06-8870-1d3f53d42f09", "urn:uuid:4baa65f2-bbfa-4106-9a11-0f4821803b8d", "urn:uuid:aa03f551-0a42-4ad7-ac84-b6f93b1484f4", "urn:uuid:5555a6a5-b670-4e38-8239-8aed34797cc9", "urn:uuid:3c80caab-6d19-471c-acf2-db37b38ba9ef", "urn:uuid:936d1b79-7c79-407e-9dd3-5d8a8d74a0af" ] + }, { + "catenaXId" : "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:57a70421-b526-4785-855a-922917104ed8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:29a17b16-4a12-4487-ae50-c587d410e750", "urn:uuid:b1fff968-45f8-451c-b496-ad1ab741ba82", "urn:uuid:e4fa56d0-da5d-4d97-86af-1dafed50536c", "urn:uuid:e5208ee9-7cea-481b-8550-01c59ac325e9", "urn:uuid:4772a43e-6bc8-4e38-933b-9f046b681332", "urn:uuid:e9b5e2c4-08fb-4647-b872-80151c34f784", "urn:uuid:4073c003-860b-4738-b982-dfbae387bb1d", "urn:uuid:a21f393f-39e3-4647-8ae4-0c92e447da15", "urn:uuid:57a70421-b526-4785-855a-922917104ed8", "urn:uuid:783701e7-a5b1-4685-a5cc-dc3653e37c57" ] + }, { + "catenaXId" : "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c", + "children" : [ "urn:uuid:2c58d02b-8839-4a35-be43-bb48dfdc0eb2", "urn:uuid:3708fecb-3e21-4ca8-a0b0-31cc10dc28e3", "urn:uuid:d42eab26-75f0-40e0-ae6b-2bb3a2f1ccf8", "urn:uuid:a8fd69cb-3227-4bac-9f1a-071b5ba11f62", "urn:uuid:f1c8b295-abd0-473b-98b3-44842e31e2e3", "urn:uuid:f1a47278-1155-45ca-83aa-92545573f967" ] + }, { + "catenaXId" : "urn:uuid:b151577b-e56d-4989-b4f8-f3641c4c8fd0", + "children" : [ "urn:uuid:264e340c-c176-440f-8e28-e6741cc6f0e3", "urn:uuid:2941d7e4-55a1-40b6-a898-e40e5719eaa0", "urn:uuid:8939e3bf-b90a-4a13-83e8-9df2a0c45bd8", "urn:uuid:7d648933-a961-4608-9ff6-76bc530d7e39", "urn:uuid:ead7804f-3730-4d37-858c-921a55ef35be", "urn:uuid:93b3cb65-db89-4b73-bc70-db79307e8d0e", "urn:uuid:53c1e7ca-bdbb-4e01-a11a-ba0dd42763d0", "urn:uuid:befe57b7-c357-41b4-beb0-add888e6f8c6", "urn:uuid:ac42c987-8696-4e66-a718-089117b7a3dd", "urn:uuid:86d4696c-65a1-45ca-8f98-83b453b9607a", "urn:uuid:c7eb1f42-c7f0-46a8-84d1-15433f3047dc", "urn:uuid:4b31fe2f-6d7c-4d13-834d-d4e45af8b2b1", "urn:uuid:de21aff3-c63c-4b29-a54f-047601ecfa8e", "urn:uuid:2c13778e-2c16-4863-b696-8716bbd4606c", "urn:uuid:c9fe130c-72f0-440e-a719-c5f6ad9dcdf1", "urn:uuid:c6e2ac85-4482-40fb-b96b-b19ee8ce6fb0", "urn:uuid:e63dfb42-e66f-4495-a0f2-2401935b7b32", "urn:uuid:cf3004bc-543d-410b-9056-63773a6e66da", "urn:uuid:104e798d-0283-4243-9aec-b90715e8a31c", "urn:uuid:ae0c5b2b-ccf0-44da-a5a9-b6fb6ebb68fb", "urn:uuid:20674b35-f4c1-44c9-934b-8c1fc783a5e1", "urn:uuid:b7e9156d-8d55-43bc-8e4b-5fbd1e5587d7", "urn:uuid:43d347b0-0aa8-480f-a360-faa76f99fc44", "urn:uuid:bca320b0-0596-4947-ac82-cdbb075ecff0", "urn:uuid:2a42c229-9eea-4db1-bef5-6c914fd4a4e2", "urn:uuid:abc6d243-c9d0-48a1-8dff-b01b85ded57c", "urn:uuid:aa70e55b-eef2-4aa5-b9d8-859715349645", "urn:uuid:968aa73a-7656-422b-baa5-372cdeb3553d", "urn:uuid:51709f1d-f168-4021-aeb7-e9552a971102", "urn:uuid:bf8d8165-9866-40da-b4de-55c26393ce63", "urn:uuid:fd64e071-bd27-4f0a-b5eb-4ba49a525334", "urn:uuid:fd063d15-972e-4df6-a6b3-4a3fb850050c" ] + }, { + "catenaXId" : "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53", + "children" : [ "urn:uuid:a71f34fe-f747-4be6-86d9-2ee1289c4be8" ] + }, { + "catenaXId" : "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5", + "children" : [ "urn:uuid:1369f28c-611c-4da8-8314-9d06bc2651ee" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb", + "children" : [ "urn:uuid:5441dbcc-3bd6-4a67-bee1-882f4efe9e27" ] + }, { + "catenaXId" : "urn:uuid:433a69b3-c65e-4bd5-9b97-674fd2613fec", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", + "children" : [ "urn:uuid:99d5be0d-38fd-4261-bbe7-55f742c85a6d", "urn:uuid:1520b6f3-d38d-422a-b1be-34afd3367ceb", "urn:uuid:433a69b3-c65e-4bd5-9b97-674fd2613fec" ] + }, { + "catenaXId" : "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5", + "children" : [ "urn:uuid:d8a44393-81a0-47e4-a689-c0aa8059aaad" ] + }, { + "catenaXId" : "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e", + "children" : [ "urn:uuid:4f432782-9bf5-41ee-a55b-5342cc4e63a9", "urn:uuid:de485f94-1534-4496-ba93-9ff7e7eec6b5", "urn:uuid:d59c7866-2412-43f9-8463-2be6a8dc23bd" ] + }, { + "catenaXId" : "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:28c938dc-9c17-49ab-b788-db7fa8748228", "urn:uuid:9e39df0d-b547-4e4e-8447-060d3faf4593", "urn:uuid:c244f9ac-020c-4b08-a817-55d3dee2d32b", "urn:uuid:448a9ff3-6517-4091-bca5-2a358090bf27", "urn:uuid:b33cdeff-80fe-473c-ae88-2512f5059ddc", "urn:uuid:b81a4cf5-491c-4b01-94bf-d4cd0e7fd204", "urn:uuid:f3d8717e-2438-4f9b-b592-115af31f4a1e", "urn:uuid:0ae9ff7e-197d-462a-9fa8-b1e8007180e7", "urn:uuid:24c87db0-27c8-486a-8c45-895a1c5e4892", "urn:uuid:ca5bf290-820e-4a71-b611-981c5ec1478a" ] + }, { + "catenaXId" : "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:6000f331-f3aa-4114-8b00-89999264d0f8", "urn:uuid:86456afa-159a-4ab2-912b-9c6a75e26338", "urn:uuid:6cb88154-95ea-4d57-9ad5-50810fd4b015", "urn:uuid:5d713d7c-16cb-4ed8-a9e2-f9774d608efb", "urn:uuid:d7e66d89-750b-4719-bdd7-5335d8b6f031", "urn:uuid:fbc1ba8b-c892-44c0-a948-f7722b40055b", "urn:uuid:9c075663-5ff9-4d72-8e99-1c7113d3cfc0", "urn:uuid:14262ab5-6b9b-4b72-b757-db940c326698", "urn:uuid:6c2a51b7-7e80-4399-ac0b-c9b4a239273d", "urn:uuid:4449858f-9d19-4dc9-8ae9-893e53cea2b4" ] + }, { + "catenaXId" : "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:00efeb8e-20e7-4d45-af85-f903ce4d70a4", "urn:uuid:8d3b2bf9-1a16-404f-bf4b-5268a12f25c7", "urn:uuid:c1671c73-6014-4194-94d6-681d646d0b62", "urn:uuid:0b5971af-4b35-4450-8630-951867d7aa5e", "urn:uuid:222ab163-7c6f-4d8c-b5ef-a525ec4ca741", "urn:uuid:5a1232d2-33cc-4301-98e6-3090bb97b8a9", "urn:uuid:53dc129c-2009-4a9d-8614-dab58d305831", "urn:uuid:bd72bfab-430a-412b-8bdc-e810de6ede65", "urn:uuid:d7c7cf63-5adf-478c-84d0-37cc0ac203be", "urn:uuid:7e2420bc-9368-43cf-8b15-27b2dad5e395" ] + }, { + "catenaXId" : "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1e564b09-9353-4726-935b-8f388825f710", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:1bd45285-5e90-4beb-beef-4524d6ef1280", "urn:uuid:1e564b09-9353-4726-935b-8f388825f710", "urn:uuid:fd18986a-bd65-46ed-8489-4ad5bb9fae56", "urn:uuid:ee023d71-9444-4da5-b6e5-6540cd17ae15", "urn:uuid:a78d20a8-6d00-472a-8d4a-805e2b274e53", "urn:uuid:0b121b38-249b-4735-a311-699ad21264fa", "urn:uuid:825cfc56-d227-4dec-9e62-4a8b29b1b89b", "urn:uuid:7e9f273e-7139-492e-a865-08608522ef1a", "urn:uuid:421bbb84-6dc0-4f23-bdf5-db0e0ea52939", "urn:uuid:4f1576bd-e629-4888-8957-5ded391dd771" ] + }, { + "catenaXId" : "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:f0099d41-2644-4820-ac38-cdbf260783b5", "urn:uuid:32f4e1d0-9364-4132-b9c3-e3a366d99de1", "urn:uuid:05b28193-671b-433b-899e-76c8cf90a343", "urn:uuid:e49574e0-8a3f-4292-8150-ac31b46069a8", "urn:uuid:ac92cc0e-3d19-4605-bc31-79b3e8157289", "urn:uuid:634eb90d-a5e5-4ec7-9d1f-57052febe586", "urn:uuid:00d6d799-89a0-4603-a4fc-7dd1fa9b27c3", "urn:uuid:7bc3b41e-fa47-4df1-90ce-72cc7ddc74c5", "urn:uuid:1dff9d4a-a947-4b80-bea3-bdf93150ce6c", "urn:uuid:659f0479-ce6a-47e0-aaa4-0dab4d1274b7" ] + }, { + "catenaXId" : "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:052985c1-9a2d-4dc0-80e9-6576e7fa042a", "urn:uuid:a67907f1-a649-4204-89b1-54b4c0d92d54", "urn:uuid:7b5177d2-f45c-41eb-8001-14de9e216ae5", "urn:uuid:d2db024a-3351-4c93-90f7-8ae66e1d7b0c", "urn:uuid:a336163a-53f9-48ab-9340-78effaf62b0e", "urn:uuid:6583ff5f-a9c3-4fcc-b427-0d6969e796ee", "urn:uuid:72b09236-9300-4fc1-9f0e-57e960b32041", "urn:uuid:f748d877-3913-47ce-b761-4a77d2ed9fab", "urn:uuid:4aa3953b-31f1-49ef-b6b6-797909beb842", "urn:uuid:922cedbe-c9b6-486e-975b-f318fd522b25" ] + }, { + "catenaXId" : "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c", + "children" : [ "urn:uuid:041a8628-c766-4afc-8ffc-3bc6eb2618b7", "urn:uuid:9677abc9-2a70-496c-bf70-d2b03a683805", "urn:uuid:53f18c28-22ae-44cc-bdb4-3a4d3dd1a418", "urn:uuid:eb71a072-875d-456a-a915-3961904222f0", "urn:uuid:ebb4822d-b5be-4a60-862d-ee7933818b51", "urn:uuid:44c6d137-db89-49ab-b9a8-a35ac79169fb" ] + }, { + "catenaXId" : "urn:uuid:1acf9c56-9be6-4e34-bfd3-1c4e7d8ae433", + "children" : [ "urn:uuid:f186827c-67af-423c-81c5-a5c6942db11d", "urn:uuid:2080aecf-1b74-4251-93e8-7147e5631f53", "urn:uuid:7ded5233-4b00-4503-900c-b8c4d709d4e5", "urn:uuid:46e5d91b-0b70-4b0a-8ac6-33686190c6bb", "urn:uuid:57dee052-b114-4003-a9c4-ebd0e197641f", "urn:uuid:82b2aadf-c08d-420b-a474-306d704fbeeb", "urn:uuid:3b699c94-e6bc-4163-b685-f9683d409add", "urn:uuid:6f3dcaf9-580b-4f17-8e51-83d7e0e69b5e", "urn:uuid:fe1ac555-ecba-42d5-bfc7-56fea2c59d9c", "urn:uuid:17a10219-0d03-4816-8c45-63ca4e46c018", "urn:uuid:60c64b92-2e36-4aa6-8b99-c2de8ac6eae1", "urn:uuid:47b69781-947a-498d-9f5a-0b26d6536b1a", "urn:uuid:e7c4e7ca-d1dc-4b4e-9437-ccce0b74d90c", "urn:uuid:c99064fa-8be7-498a-8b43-6df7ebca8b85", "urn:uuid:5be88a30-5896-43b4-95c9-346cb932707d", "urn:uuid:7da1d234-00d9-4c9f-a934-36e087fb04f1", "urn:uuid:e70ea4fe-79e2-476d-829f-56df4c091e87", "urn:uuid:2eb195cc-126d-4616-9394-38db99dcef5b", "urn:uuid:4856c882-6c66-4b33-bd90-e4c7efb47f92", "urn:uuid:da0b0e07-d0fa-444d-b25a-4a3b96850245", "urn:uuid:1c6b8466-5257-4269-a686-caf30f28f5d4", "urn:uuid:772eace6-5589-4b52-a557-17384edeccde", "urn:uuid:982c36bf-fa34-4289-a731-9b8cd371cd1a", "urn:uuid:167f509a-1bcd-4baa-843a-ccc478fee49f", "urn:uuid:63fc503b-884a-4e08-9f59-e286b7caaa86", "urn:uuid:c4817a1a-2bc0-48cc-a60e-75ffbe28a2ce", "urn:uuid:67708fd5-8abf-471d-8b02-4db5a179c01a", "urn:uuid:9fe39790-fa48-4c1e-80bd-72200c60b05f", "urn:uuid:d0c5da48-58b3-4d44-8faf-288b8761e5f2", "urn:uuid:d4745aaa-8974-48a9-a627-444525f74152", "urn:uuid:c20b51f8-1d56-48cd-a2ca-0b2911e39f1e", "urn:uuid:86dadf16-6261-4bb3-867e-4d292e49ab7c" ] + }, { + "catenaXId" : "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1", + "children" : [ "urn:uuid:b680a188-d241-4b18-9c0e-b9977568711e" ] + }, { + "catenaXId" : "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2", + "children" : [ "urn:uuid:71bb4972-744c-44ca-89c6-d97648cf5313" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c", + "children" : [ "urn:uuid:8be10fcf-e5e6-459e-a78f-4bf4f65257c1" ] + }, { + "catenaXId" : "urn:uuid:a4ed6355-8133-4416-b00a-9f3e70f10042", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", + "children" : [ "urn:uuid:a6be9b66-3bfc-4711-8cff-cd5054aeab62", "urn:uuid:5f538fe0-5a0f-45ad-9f22-a87c708be79c", "urn:uuid:a4ed6355-8133-4416-b00a-9f3e70f10042" ] + }, { + "catenaXId" : "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd", + "children" : [ "urn:uuid:c51eba81-e33e-4fb0-b9dc-89b0f8e011cf" ] + }, { + "catenaXId" : "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4", + "children" : [ "urn:uuid:ebf7d657-e14b-4bc2-a5d5-da4e8d00bac6", "urn:uuid:0601165f-d9de-474f-8d6a-3c53ca355ecd", "urn:uuid:381918d4-bf1c-40af-b386-509e16a858b1" ] + }, { + "catenaXId" : "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:c390ee73-a3d9-4e54-8415-c5fe2ba392a7", "urn:uuid:1b7d99fd-2bbe-4c55-914d-69c1a347ab60", "urn:uuid:812dc159-40d1-4750-9d51-3d4a5ac7dd1c", "urn:uuid:d77521be-5e16-4a80-8a08-a0b682358f43", "urn:uuid:c699042c-6f9d-4c18-b74f-29b14f179cb4", "urn:uuid:d93eb58b-cd62-4bc9-a409-8f67981d222d", "urn:uuid:ad37d5ec-93fc-4f9f-bf4c-305576655835", "urn:uuid:8a6bc03a-dd0f-4db1-8afc-ff3c459114d8", "urn:uuid:b35c0564-79a7-4ff4-a81f-2089beb86544", "urn:uuid:24035d63-6808-4d27-b56a-fa1ca47fc12a" ] + }, { + "catenaXId" : "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:51e77d82-53ec-4eab-8f93-8b5dd5f60a99", "urn:uuid:e158c3c1-3856-47b0-99f4-375c0802df60", "urn:uuid:fb6ce34a-f1bc-4df7-9376-4420ea66e5fc", "urn:uuid:5bce83bb-4c38-4da9-af55-7fc7cca2daf6", "urn:uuid:c44933c7-58ae-4168-a7c8-ee38cd024925", "urn:uuid:924dda3a-2b58-4ded-afb6-ca97cad9510d", "urn:uuid:d8a2b83e-8850-4f32-bd76-ca27e5d1590d", "urn:uuid:88d86322-66c0-4029-92f7-7f6ba3aa246f", "urn:uuid:0249d45e-a6ae-4701-abb7-247ceda120b8", "urn:uuid:432325df-3bb3-4122-92b5-b26947cddf23" ] + }, { + "catenaXId" : "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:adc5ba97-e5af-4268-b884-7e83c4d114a4", "urn:uuid:748018c4-403d-46c5-a79d-5a80508aed94", "urn:uuid:388df6f0-b9d2-43d4-ab70-fe2be9c59f42", "urn:uuid:fed673c8-f1e8-448e-8c34-7589583e59b5", "urn:uuid:6dfab186-a5b7-4919-aed9-4075f237e7fe", "urn:uuid:c1df761c-604c-451e-a965-3eeaad27a3c9", "urn:uuid:485a189b-5ed6-47f0-9b8d-d428818c490b", "urn:uuid:88f9d2de-9e8f-4197-b53d-0de5e0753ccc", "urn:uuid:58c12a1f-e3af-4b9f-9bd1-7c323193af79", "urn:uuid:3a03d9a9-ec2c-423c-805b-80d10713da17" ] + }, { + "catenaXId" : "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:89db0b25-70b2-4fca-a0ed-903de3e2408e", "urn:uuid:a3822c54-6774-46f4-9d41-b7b3217e208b", "urn:uuid:67125b20-22bb-4bd2-b988-94b0d10eeff8", "urn:uuid:3c1adcbe-56db-4814-a832-872876ae3b43", "urn:uuid:0b8ced4c-92ad-456d-bf9b-cec5301c2b63", "urn:uuid:3aeebbc8-dd2e-4cbf-80c7-d4c89cbb31ac", "urn:uuid:8051c753-1e6f-4cb4-b92e-78198f1eb9b9", "urn:uuid:31cbe0d7-9133-41dc-9a5a-f2a63fb35817", "urn:uuid:1a2740cc-73dd-4b1e-882a-a238a4d2e6c4", "urn:uuid:c16d5b3a-f50e-4a71-9c49-b779cc9f19ba" ] + }, { + "catenaXId" : "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:5241bb1d-564f-4329-a508-cc2eaa7ed86d", "urn:uuid:dd4fc289-3025-4e50-ab5b-912bd2ccc5d8", "urn:uuid:0712ca65-225d-438f-a8a6-a74a8a2b82c8", "urn:uuid:04b7017a-ec51-46ea-a469-ef2e3cef9b3a", "urn:uuid:dfdb4d5c-171b-4360-b6ab-b9c70ff4117d", "urn:uuid:9e252796-d143-42ba-a72a-3a4bedda3f4a", "urn:uuid:a6f1fd54-d8b9-4285-9e19-7c82eb705783", "urn:uuid:ed522018-5c21-41af-85d9-cd3b57cbd5d2", "urn:uuid:92bfdecf-f258-4cf7-96e8-026ff7a54715", "urn:uuid:24834dc6-3fe1-4159-a1bb-dd8faa8e5d1d" ] + }, { + "catenaXId" : "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:da12481a-aaf7-43ef-9b43-c36f8ada9f00", "urn:uuid:efedf829-c0d9-431a-8af7-0f2442a389f5", "urn:uuid:97977b1c-80d5-4b24-b36e-a96d1af45c38", "urn:uuid:defd7a2a-d251-4ce7-8b2f-ab0d255e589a", "urn:uuid:6d8d31aa-aefe-401a-9728-4dec06a8ddd0", "urn:uuid:1852927c-7d50-4c02-8171-2ac7eb7e1093", "urn:uuid:ead6f940-4f5d-4d4b-8c39-162644741fdb", "urn:uuid:029319af-f1ef-44db-99bd-d000c723eb18", "urn:uuid:df400707-910c-4f85-83a4-e52fb0cb61a6", "urn:uuid:ebed52d8-afbf-4270-b523-1afa8277528b" ] + }, { + "catenaXId" : "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9", + "children" : [ "urn:uuid:84f62211-2987-48c1-8f76-7791b1722a1f", "urn:uuid:0c5f4803-3f18-44c0-88b4-c8aa63c94879", "urn:uuid:c89df652-f2da-453e-8d3b-94b84b594c0e", "urn:uuid:4e41b93d-771d-44e9-9e14-c741d8e0b331", "urn:uuid:68e104a0-eb91-49ca-b30e-555cb1d7dfb0", "urn:uuid:128e517c-e9e3-42bd-9ae7-dca18043b186" ] + }, { + "catenaXId" : "urn:uuid:a7ed3dc2-41da-40a5-93b1-3cdbfa8ebf4f", + "children" : [ "urn:uuid:6875a8bc-f4f7-4d9b-af54-99760f5e483c", "urn:uuid:1bc3bf2e-2e08-4604-b710-25a841ae7bc1", "urn:uuid:24d1ba71-5095-4bf3-8316-6af12ead15d2", "urn:uuid:6ae855c1-a9a3-48d5-b8f9-0ba39751ce52", "urn:uuid:94887f91-86d2-42f3-a889-97efad251002", "urn:uuid:c33f4513-9fae-4ff4-8a17-493e0b48f72b", "urn:uuid:6a67900c-2ac0-43c9-8c92-1060fd1dbe29", "urn:uuid:9c268030-0bde-42d0-848a-e60360fab623", "urn:uuid:706c8171-fd94-4c2e-8a43-b3cc6f682294", "urn:uuid:bb0ee1f6-b151-44c3-b092-932fe29d6f8d", "urn:uuid:b6641421-9e65-4c15-a384-19938b320ae2", "urn:uuid:3c723540-f1ea-42ff-8f2a-d0cbce069a33", "urn:uuid:88d03b0d-bbff-48ce-913e-e425d29ed6ed", "urn:uuid:e90ad517-06ea-4252-96bd-8863282e91c9", "urn:uuid:d151ceb5-bcd9-4fd2-ba6f-559f718b2451", "urn:uuid:c576f762-533f-4a4c-abf6-ad8aa149cf15", "urn:uuid:14482a3d-57f8-4c86-8418-2ebab284c634", "urn:uuid:cfa317a9-28ce-4efb-a9e8-8882d5921e9e", "urn:uuid:c18a36e1-8edd-4895-b24c-4a3fd864eb3a", "urn:uuid:d8dc6e59-161d-4323-97ed-56302ea7a827", "urn:uuid:9a6c557b-ba4c-4f44-b8d0-8c6b51ead200", "urn:uuid:8d73533f-997d-4776-aaa4-0713511ceef9", "urn:uuid:f145cf2e-7d3a-4362-a911-133ed0052601", "urn:uuid:3da74474-1b9d-45b1-99d2-af79aa508b93", "urn:uuid:4b86ddec-ddb5-4927-a813-ca0c53f84981", "urn:uuid:4f84a861-83ae-415a-b7d0-5b5432a890a7", "urn:uuid:277a5602-5ca2-4e21-801c-330836fdcf06", "urn:uuid:54a952ce-4b3d-48d5-ba55-8c3a4595f476", "urn:uuid:15a5ac55-f21a-48ba-b893-6b2310fa6923", "urn:uuid:94e609c8-4408-4506-bab1-14cb7f80f1e4", "urn:uuid:194afe96-9416-4e7b-94fa-5659be9160a4", "urn:uuid:7a10d511-2c8a-4010-8f03-e0c6a6db26d9" ] + }, { + "catenaXId" : "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8", + "children" : [ "urn:uuid:4dacd840-bccb-45fa-be79-c6ade46fa65a" ] + }, { + "catenaXId" : "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68", + "children" : [ "urn:uuid:331c54d4-7989-405e-839a-144bcbd78b19" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09", + "children" : [ "urn:uuid:8d27d6c6-8c3f-442f-b030-b7cdba53fc15" ] + }, { + "catenaXId" : "urn:uuid:8bfa9678-bb59-446a-96a2-80901f93ec42", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", + "children" : [ "urn:uuid:e70e47c9-7e9f-4b2f-84c2-981bcb1a715d", "urn:uuid:8c55879e-142a-403d-876e-f4e211839b09", "urn:uuid:8bfa9678-bb59-446a-96a2-80901f93ec42" ] + }, { + "catenaXId" : "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1", + "children" : [ "urn:uuid:633f11d8-d463-4a76-b7fa-67099df9a9b1" ] + }, { + "catenaXId" : "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e", + "children" : [ "urn:uuid:5c2a2893-57bd-44b6-8598-477f07312906", "urn:uuid:40de06f7-82cb-4aae-a3e2-f5d6e81c29e1", "urn:uuid:e0e9c31b-9117-498c-bcd9-365959dcb908" ] + }, { + "catenaXId" : "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:199cde2c-af12-461c-baf9-295080a03022", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:3068d1e1-39b5-41b1-93cc-28bdaef40d28", "urn:uuid:adfcab86-c707-4f04-8d03-bb5668c52788", "urn:uuid:82cd1954-1563-4ab9-bb18-74704c86816d", "urn:uuid:f0848a3f-994a-4e2b-b975-8a313edadf1f", "urn:uuid:d47d9b47-2d76-43a7-97af-77c16d1cda4c", "urn:uuid:8c2f6760-a0a5-4a76-ab65-9680835c798d", "urn:uuid:bcf30712-2e58-4289-b7ac-710de0439683", "urn:uuid:199cde2c-af12-461c-baf9-295080a03022", "urn:uuid:5a011fb1-a13d-4dd0-b250-8f85fa7f0791", "urn:uuid:1b99a2ed-367e-4900-abd2-69b96f9b0e0f" ] + }, { + "catenaXId" : "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:86fbb193-7f37-4136-b7ed-5f75e83f0e01", "urn:uuid:af74db77-9b61-4874-8a34-53eaf939fdc5", "urn:uuid:c18156b4-4c3b-433f-b4dc-00fbc54cc2a5", "urn:uuid:6daa2031-b57e-4da5-a2c8-e2b96ec449a4", "urn:uuid:b35bdeae-6759-4632-8d1f-d9b82eba5cd5", "urn:uuid:718ea6d7-6c11-4d65-ae37-6edd58ff635b", "urn:uuid:0b58b0c1-c097-4092-8fb8-4fb582773975", "urn:uuid:6ae3deda-3eb9-4eda-8555-a888e5edb718", "urn:uuid:fd459409-c6f1-4432-9f07-f10b0ca04ed5", "urn:uuid:4c26a36a-7bcf-49ea-ad47-2f369942c0cb" ] + }, { + "catenaXId" : "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:2bbde4b0-1b9e-4d77-b584-ba364bc57373", "urn:uuid:f63b7f7b-ca84-4b7a-afe0-44a52de93427", "urn:uuid:f9ba68bc-49c3-4102-8698-7e0fd16898df", "urn:uuid:6d46ed53-7cfc-413c-b05b-108eac741333", "urn:uuid:e8c9ba67-d8ae-4fc5-b0e4-087cf6924336", "urn:uuid:5ee0072f-2226-438a-a639-cacdc068ca7e", "urn:uuid:7d5757fc-e376-4f54-8524-b1f960669160", "urn:uuid:6314f002-3358-4d38-92c9-d8d3ca76a2bf", "urn:uuid:967b63a4-2ea9-43b5-8a39-ca05cfe4f6de", "urn:uuid:c182f999-0e3e-4abb-a23f-a2febf956ffb" ] + }, { + "catenaXId" : "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:eb6a8f85-b237-4fb3-a889-a54df9a91f45", "urn:uuid:a1ce9572-ea30-46bc-b463-c23efb276577", "urn:uuid:0a52f6b2-2593-4f3a-bde4-b131c2c97662", "urn:uuid:1169755c-4c34-460b-9627-ee03002b5a22", "urn:uuid:0f934835-03bd-416d-8ea5-985d58243c97", "urn:uuid:c307e405-5bbc-4a5c-8dfc-1c65a7abea1e", "urn:uuid:0a9395cc-2cca-4f7c-9ce9-b4a74ed8ff61", "urn:uuid:42b7dd35-f693-4248-9b0c-882fcd367a30", "urn:uuid:5bac7c80-7510-4016-824e-82636ddb5061", "urn:uuid:92be3324-be80-46ec-a987-27b3b2e22846" ] + }, { + "catenaXId" : "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:1822f985-7b13-4e20-800c-e8dca3e86198", "urn:uuid:abd12f1c-534d-4f43-9df6-2b6ed01ac49e", "urn:uuid:5d7a051d-a54e-48d2-a779-537cdb840939", "urn:uuid:da7e4e4a-5bd9-4dac-9ac6-29582a9aa666", "urn:uuid:0ecb31d3-d2de-4b0e-8c8e-aa23f705a327", "urn:uuid:b35f6500-4a17-419e-b30d-1eff1eceb361", "urn:uuid:1abc4cdc-3e30-45d1-b42d-0f4d57d4f52f", "urn:uuid:b0973dd8-601c-41f2-8c33-be7508ff8103", "urn:uuid:e5a55909-7808-4daa-8d41-244ed2fd2ebe", "urn:uuid:f61e7579-afbc-4719-a364-a40210e7f61e" ] + }, { + "catenaXId" : "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:eb0b7e86-0923-420e-a918-4ccbb2ce8695", "urn:uuid:11b0bc18-6f39-4fa4-8238-dc067a114ddb", "urn:uuid:6e95b061-67b6-4ab9-b13a-1cf66f772d08", "urn:uuid:69729038-58ba-4866-a4d9-b82b30e1f940", "urn:uuid:e9d694d8-7f72-462d-b4bd-850e05d4ff1e", "urn:uuid:e609effa-5a6d-4b59-9150-0e1971196b51", "urn:uuid:d9c9b2b8-e802-4a26-b507-858a34705c24", "urn:uuid:559b7f12-61d1-476b-87bf-493260b2e4f0", "urn:uuid:d5e07ae0-ee58-4140-b39d-f04f5f571a2f", "urn:uuid:d7bd9648-7fef-4b91-b9cd-d7f2c937c833" ] + }, { + "catenaXId" : "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291", + "children" : [ "urn:uuid:df58c0e0-993a-40b3-9a9f-ce1abd8da486", "urn:uuid:aabfb5de-9648-4588-9989-d43d93804f8b", "urn:uuid:2d3d2b81-b225-4554-8faa-352c46d3c91f", "urn:uuid:a8e6e41d-7849-4e24-8969-4826750d13d5", "urn:uuid:4ad23a50-721c-499a-9ed9-9f0aadbd6755", "urn:uuid:2ac6a849-8290-42bd-89d1-af70de2d4956" ] + }, { + "catenaXId" : "urn:uuid:0a147f82-7941-491b-aaa2-503891a6955e", + "children" : [ "urn:uuid:3997bf97-501c-4c43-a3af-d8f97a55131d", "urn:uuid:97ebcd87-224c-41ff-9ecc-05d8c483fb58", "urn:uuid:8659e9a9-c4e4-4a07-9653-923a5707b70c", "urn:uuid:2e0cd53d-8fd4-48f3-8a13-e14502948faa", "urn:uuid:1ca30c36-c0c7-4655-b5aa-769b964694d8", "urn:uuid:c16e385c-db47-4017-be99-273bab4bbf68", "urn:uuid:26ece0c9-e57e-4238-80ae-c2d57292ae19", "urn:uuid:cc496c32-d6a5-466f-9187-3a9a0d6d96f9", "urn:uuid:7d962e85-0fd4-4e9f-8a81-f9830611629c", "urn:uuid:c2b01216-d298-4987-929a-b1531ae92aa7", "urn:uuid:a34feb51-94ff-4dc8-b077-12af9cf4b36d", "urn:uuid:fff8d480-68f6-453b-991a-34c9511b6537", "urn:uuid:cd0c5fa4-c9a2-437a-995a-693827d6d0c2", "urn:uuid:fcb45b3f-64a0-4256-8972-e08c68dac265", "urn:uuid:921ea907-cfe1-4a79-a392-f8b19c1e19ac", "urn:uuid:cdccb71d-5746-48a0-82e6-aa22d452d282", "urn:uuid:e46d0ccc-585f-4724-9562-a0f1f1c3b292", "urn:uuid:a3f0fc7c-0660-411a-8a80-db2365af2fd3", "urn:uuid:065328a3-9abc-4383-9619-f66210a086e8", "urn:uuid:a2e96ed2-8a2f-489d-8eaa-900d6279dcd0", "urn:uuid:8bc7bc7e-d929-4ba0-bc6b-4ed0ad70750b", "urn:uuid:306091f6-52d2-4b95-b28f-bf69e67f049f", "urn:uuid:4c836cce-1810-4300-be02-917a553acfaa", "urn:uuid:f40f1b3b-47b1-4c9e-a198-65ba1da9b6e4", "urn:uuid:bcd3db07-55bd-4da1-a5f5-d18aa43df777", "urn:uuid:d78aa54d-14bc-40d2-8edb-883fb8a3b7b4", "urn:uuid:c46044f2-68b2-4ab1-a61a-70a46572237c", "urn:uuid:88d3c6c5-6007-4938-83d7-8ee4138d84ce", "urn:uuid:ebab9e2b-efb6-4867-ac1b-d977b1333db3", "urn:uuid:c7d4fd11-8386-48d1-9898-23450b20a2bf", "urn:uuid:1be32f19-97a3-4833-af9d-23b1afae3a9d", "urn:uuid:69b3a1a8-508b-46a7-b75c-132d044f840d", "urn:uuid:c7b09815-0a0d-4964-8bdb-e92ae6debe6d", "urn:uuid:ef02d984-e0fb-424e-8dc3-b301c941388e", "urn:uuid:77a39a25-43f8-4a63-8969-b019dad17291" ] + }, { + "catenaXId" : "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a", + "children" : [ "urn:uuid:5fe3762c-40a6-4107-a917-1ed8c1c94ba5" ] + }, { + "catenaXId" : "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237", + "children" : [ "urn:uuid:9ad4c28f-71c5-4ab0-9ade-9c020b8208c2" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:40f15c89-adee-4916-9641-817309306f70", + "children" : [ "urn:uuid:7e8b28f0-8ff2-4dfd-8c19-e2e211d58701" ] + }, { + "catenaXId" : "urn:uuid:8f3b91ba-55c4-4e94-86bd-5968a8b8749d", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", + "children" : [ "urn:uuid:8d8f640e-d50a-4275-be7e-c107465a4082", "urn:uuid:40f15c89-adee-4916-9641-817309306f70", "urn:uuid:8f3b91ba-55c4-4e94-86bd-5968a8b8749d" ] + }, { + "catenaXId" : "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1", + "children" : [ "urn:uuid:80c5a9a8-a644-4560-bec5-4cbd67cff480" ] + }, { + "catenaXId" : "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd", + "children" : [ "urn:uuid:14eb3e83-f19d-4b43-9434-9808fbd0df86", "urn:uuid:2266012f-168d-4a36-b36b-c07926cbb5e1", "urn:uuid:71b9835c-6bf1-4fcd-8605-f71c3e6806c9" ] + }, { + "catenaXId" : "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:42ca4ada-b460-4611-999e-358915788495", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:b939ad7e-4555-421b-baab-3b4051d67075", "urn:uuid:e7fa4483-9d95-4e13-a561-80ef093c7ab1", "urn:uuid:7f4adb65-2f59-4399-b67b-4dacc6c2c654", "urn:uuid:42ca4ada-b460-4611-999e-358915788495", "urn:uuid:6616ee66-4a0f-42f9-8bad-12299b0c5ac9", "urn:uuid:25b8bbe0-c9f4-4a3d-a2f0-9b9f6ddfc0a4", "urn:uuid:efd77cc9-476d-46de-b03e-f162d34db9da", "urn:uuid:df193898-db3a-4825-bfc4-f304affc0967", "urn:uuid:c57f6d10-0cf2-480a-8d5d-b4a420db753b", "urn:uuid:df6189c0-f688-4285-9e72-7201b7fddef6" ] + }, { + "catenaXId" : "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:08e6a90a-cdc5-489a-9217-8c89fa6fa7ac", "urn:uuid:ead5e0e4-defb-4e36-9e95-0579b7ad721e", "urn:uuid:da57513c-a4a7-4950-baa1-e327602caba8", "urn:uuid:c969555d-997e-4325-ba9a-17d5f1fdb7a7", "urn:uuid:4e932e7a-4ef7-4632-af2d-dbb906ca7e06", "urn:uuid:ed5d4df7-cd10-4cd2-a190-85141df2ab71", "urn:uuid:7105836d-cff9-4536-96a8-b3ef6ae43626", "urn:uuid:5ff89b68-6cf3-450b-8e00-a7ac98246066", "urn:uuid:cebcfb37-857d-4f6d-bd08-578eccd7a7c3", "urn:uuid:2353a9c8-1ecc-48bc-a3a9-a737376e8f91" ] + }, { + "catenaXId" : "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:ac604c80-a23c-461a-8aae-8d5d22e6d53c", "urn:uuid:b3904621-868e-4621-ad0d-14ded7922824", "urn:uuid:06118c1b-cd45-405d-81e3-a167d9b94c32", "urn:uuid:44c6c527-7181-44e8-ab0b-be791f2747f4", "urn:uuid:a0332498-5d3f-4999-8f60-3e8073bef2cd", "urn:uuid:0a320db4-925d-495f-bcb7-72339389e927", "urn:uuid:cb42ea13-a481-4553-8f68-bfd21c6cd372", "urn:uuid:b08a42e1-a4ad-4f52-93ec-7e0031b6f3b9", "urn:uuid:9bd2e0cd-0f53-4fe2-9ea7-ac05c1aa1aea", "urn:uuid:29dbc581-bbaa-416e-b27f-9d4a6725b51d" ] + }, { + "catenaXId" : "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:16d1d0fb-2183-4ea3-baae-0a3cb78a8454", "urn:uuid:937fbd24-67f7-43cd-838e-06f859bf9a6c", "urn:uuid:d2649e3b-4a39-4e3a-b991-934ad0d9a302", "urn:uuid:12a7443e-edce-46ea-9333-c63798298d7f", "urn:uuid:3ed20d88-bb67-45ca-89ad-b902e2206c03", "urn:uuid:55de45cf-85c1-4e82-a7db-c2aaa337fc4f", "urn:uuid:693b8f8c-c5e8-4ad3-b9ef-0c100e311ce6", "urn:uuid:caade8c3-919c-4c3c-aedf-d7105d1d0c61", "urn:uuid:64ef95bd-6655-421d-a451-1f93d3ec9a93", "urn:uuid:3705e10a-4e4b-48e5-92eb-b5e9b8cf8d18" ] + }, { + "catenaXId" : "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:47172491-e327-4aa6-9125-8f037917d412", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:28c870d0-70ed-41fb-a0a7-126f03725fe4", "urn:uuid:ffff58be-4492-41b4-87e7-39c8c765ab93", "urn:uuid:b33578a2-6e6a-4fc5-b536-ff5877ffa8bf", "urn:uuid:2fb07fc6-a724-4718-b061-1ff04cd5cb3b", "urn:uuid:fbbd0e70-f944-46d3-b394-afacdf4307f1", "urn:uuid:a6394124-883a-4aaf-8cf0-618ea9fc534d", "urn:uuid:7838c7cb-56d4-4539-aa61-5320ac369237", "urn:uuid:260e09a5-d089-4fd5-bae9-8ebac426b9aa", "urn:uuid:47172491-e327-4aa6-9125-8f037917d412", "urn:uuid:97a066b2-cf81-4d61-8832-84ba880dab4c" ] + }, { + "catenaXId" : "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4132374f-9583-4130-a115-e7293f553311", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:a5adce4f-ecbd-4e26-ad49-012b5f9ab859", "urn:uuid:3484275c-ce1e-4ef4-9b59-8c86b512571b", "urn:uuid:1a2b9c19-c916-4827-a901-eb46d63cac3e", "urn:uuid:af3a91c3-c575-47ca-a9b6-93a4691dc50a", "urn:uuid:891023d5-1411-4cfc-b100-237fd1315907", "urn:uuid:f446f6d0-7f28-4cf0-8154-8fb591478f5a", "urn:uuid:b6bcdb27-2330-485f-a1db-5f15f1223026", "urn:uuid:d0347777-e015-452f-986c-9bf100aa90d6", "urn:uuid:56fd8311-6e2f-4348-96d3-80330316f503", "urn:uuid:8af58dce-9d03-4ee7-9167-108031554c54" ] + }, { + "catenaXId" : "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708", + "children" : [ "urn:uuid:fbaa60a1-fe3c-48a4-952a-efd74b66adc9", "urn:uuid:dcbed0f3-9b55-47b1-9cf7-0c6a0910428a", "urn:uuid:f1cc95c5-eb26-4a8e-a32b-f56a960ba3fa", "urn:uuid:e04bc0e3-0a05-4637-94f7-c575d740a4c2", "urn:uuid:56139a39-b9fc-40c5-9662-fae9cd8086a0", "urn:uuid:4132374f-9583-4130-a115-e7293f553311" ] + }, { + "catenaXId" : "urn:uuid:b90e7d9e-54cd-43c9-9d16-c0ea4d0946da", + "children" : [ "urn:uuid:af7f5827-a9d0-41ce-9871-06dda6d48c13", "urn:uuid:268795d2-91e8-40f3-b942-db053427cd1a", "urn:uuid:dd12bc61-2833-49c4-9278-babe8c7dd04e", "urn:uuid:105560fe-a174-4da2-8006-70a788431888", "urn:uuid:37aaf5dd-e24d-4af9-bbe5-8df892e8384a", "urn:uuid:44affa8a-059d-410b-82b2-17f470b9b237", "urn:uuid:34aac0ea-f76d-4b42-9af1-43113b0c9c5c", "urn:uuid:0d74ff2e-be32-4ed4-9dc2-84f74b98e558", "urn:uuid:4c71271c-3059-40e6-b8ad-8f52f376decc", "urn:uuid:b3b6fdef-9fa8-485e-932d-41be74a687a8", "urn:uuid:65c3e3da-586b-4f03-914b-e0f479fee1d1", "urn:uuid:afa8cca0-dafb-4888-bb85-3043a546fca9", "urn:uuid:b63b2704-ff2c-4842-955d-2db8531cb846", "urn:uuid:f22146d8-bd23-4837-ac54-3c36e8de88fa", "urn:uuid:57c1fab4-b93f-4acf-97c9-e07d74366715", "urn:uuid:3342259f-1fe2-413d-9c5d-62f272915612", "urn:uuid:09930847-5704-4e32-ab51-6165027a662b", "urn:uuid:59aa7cb4-44ee-4d5e-bdb1-80c5c6b50a50", "urn:uuid:62ba1615-9416-4c49-84e3-cfff34291535", "urn:uuid:f8824b9f-5d3d-4ca7-9212-5cef3a496e96", "urn:uuid:16c7a77a-c3eb-4332-8ff5-1e3b909b9c46", "urn:uuid:06cb2f3f-a2f8-489a-8a7c-fe7a387c09b2", "urn:uuid:4f06424c-1a54-4d2f-9f9c-837ec10d9b61", "urn:uuid:e341645f-7683-4853-be58-284198e520cf", "urn:uuid:9c8d81e8-c276-49c1-a976-2159f90302ad", "urn:uuid:2672f809-93a1-41db-aa4e-e588323957a3", "urn:uuid:3b7a1d6e-1eeb-4007-9a20-36e973996c10", "urn:uuid:eb3d8803-d9a5-417a-b3f8-c0e51a5ba55a", "urn:uuid:cb0ea2c0-6360-422a-8bb2-87743f37d3f0", "urn:uuid:6c4e3396-4016-4664-b642-fa4e518c8bee", "urn:uuid:4b0eb27b-8c3f-4f4c-b7fd-fd5d2a8a144a", "urn:uuid:7ca8eef4-4b2e-437b-9ac9-07252a960acb", "urn:uuid:34dad623-0611-43b1-80ec-5d0d330c0380", "urn:uuid:8de559c8-716e-4d41-a457-83a5e80f91dd", "urn:uuid:820b943f-51e3-497a-ab0c-b5e484d14708" ] + }, { + "catenaXId" : "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094", + "children" : [ "urn:uuid:a18fa655-9fa8-43cd-99f7-d1111a95c5bf" ] + }, { + "catenaXId" : "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c", + "children" : [ "urn:uuid:e12a9218-dc05-4a63-9325-e83a5e59b54a" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4", + "children" : [ "urn:uuid:ed88ebdf-8b6d-4b48-926f-0240ca818fb3" ] + }, { + "catenaXId" : "urn:uuid:1dd27ae1-5098-4abf-ab2b-e662510b4a1b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", + "children" : [ "urn:uuid:040526f6-0df2-4673-b748-f9fc51c970c1", "urn:uuid:d270bf27-26e9-47f6-9b85-dfc5287c2dd4", "urn:uuid:1dd27ae1-5098-4abf-ab2b-e662510b4a1b" ] + }, { + "catenaXId" : "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e", + "children" : [ "urn:uuid:7c483880-aa69-4bbf-811e-f96ae0f1e3ea" ] + }, { + "catenaXId" : "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b", + "children" : [ "urn:uuid:ca19e348-1f4e-45c6-a08f-00673fe0deab", "urn:uuid:f8452089-8c5d-4af4-9f60-8c60c273c43e", "urn:uuid:69ee185f-23dd-4dbb-b630-3be4dc4bce88" ] + }, { + "catenaXId" : "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:36682599-1346-471d-aec9-a65102611bf6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:f641e95c-e1ee-4bc7-9f2a-1f147fae3af1", "urn:uuid:775fb6d1-d05d-41ab-b6f9-a3df51da5c39", "urn:uuid:5d037cba-0544-4c52-9a39-a2d990b7172f", "urn:uuid:2dd9d88f-e1ee-4181-98f5-9746a7f79ba2", "urn:uuid:fcde842c-7113-4775-bb18-87990df3295a", "urn:uuid:08d68672-afe8-4112-96e5-6bd724f8df00", "urn:uuid:a52a629e-f5be-4ab2-a776-1f363efd4bba", "urn:uuid:35be05f7-6b83-4087-961c-b8edc005049d", "urn:uuid:f7ef18bc-e307-4d1c-bd89-a50f8fd6d357", "urn:uuid:36682599-1346-471d-aec9-a65102611bf6" ] + }, { + "catenaXId" : "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:932180df-42e5-4fad-9736-6b21a4117377", "urn:uuid:bb6e4ffa-0bbf-4172-a4b6-7037f0e18a88", "urn:uuid:6b10d330-ac4c-4657-9149-247bfcd57a1f", "urn:uuid:d7a5cddc-70a3-44a1-9881-533d98308696", "urn:uuid:580e323f-e2c3-40a4-b7f5-ffce0f0ccf0e", "urn:uuid:4525e463-7545-4183-9bf3-712cd17de965", "urn:uuid:1cb151ee-16e5-4157-a217-e88e50a25486", "urn:uuid:fdc6e289-4c1e-490d-a68d-2b9cd93d593c", "urn:uuid:e5afa7dd-50e6-4999-8a79-69531d275ea4", "urn:uuid:e0e6d402-bb15-45c9-8f47-cb0d2cc10df3" ] + }, { + "catenaXId" : "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:18cbb7dd-96ec-4a8c-9c7c-c195fd88a83b", "urn:uuid:38200920-4ce0-4783-a610-c379e3c97fc1", "urn:uuid:eedafad9-87dd-4bf8-8846-4b2774e57068", "urn:uuid:17f94b41-828a-485b-8884-3d5b0b7dfdc2", "urn:uuid:a426a1a2-df11-48a7-bca9-d561a9209d84", "urn:uuid:a30d8f00-0738-40d4-9f44-468759b56bfc", "urn:uuid:126a038e-923a-42b3-8c1e-18ce7043152b", "urn:uuid:c36f13f9-c5bd-4ad2-bdb4-c373a61a4d66", "urn:uuid:03cdb9c1-bd8c-4e71-9781-bf3a9f985b55", "urn:uuid:4eec3f96-9c9d-4f1e-8e7c-60f39f565876" ] + }, { + "catenaXId" : "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:9e7492dc-0957-4d16-b2af-d8813a1be567", "urn:uuid:7dea9a93-8ff8-43f7-89c9-4273c42dc0ac", "urn:uuid:101a80d4-e5f8-44b1-9115-66ff413e1536", "urn:uuid:c29f0326-7f8c-4f21-b184-fac7304d4b62", "urn:uuid:36010986-794a-4142-a96b-dc8f25d9f7f2", "urn:uuid:1623b933-58a6-42ae-b7e1-2b8571031269", "urn:uuid:3219c9b0-6dbe-4d11-8806-fc0450d87cf4", "urn:uuid:66e84369-6a49-4a75-b5ba-bf86fc3ad3d0", "urn:uuid:944da81d-05b6-4d50-82ba-eff3ecab13c3", "urn:uuid:2afcf7cd-00d0-44b0-ac0a-891a48ca6c2a" ] + }, { + "catenaXId" : "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:6ab30a35-a9f6-48d2-a3a7-4d72a1e70187", "urn:uuid:9855d960-d9d1-4a0e-867e-ec28cb96d31b", "urn:uuid:6310e398-adf6-4c96-86d3-aba62a533cc1", "urn:uuid:78abbe42-1285-46cb-8040-2d3647a6a554", "urn:uuid:e7da32fb-f3c9-4729-9690-ff41adc8eabc", "urn:uuid:e2c26c79-3c43-44e4-985b-d4b2afd5eff6", "urn:uuid:408ca794-dd18-44b8-a9c8-29460d9424d3", "urn:uuid:c36cbbd8-f67f-4ba7-8f39-3ae12c5cb533", "urn:uuid:ec812cf8-2727-452b-9f03-e2eae2e103cb", "urn:uuid:cd84494b-963d-4c0d-875c-47a706fc12a3" ] + }, { + "catenaXId" : "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:492884c7-0dc5-4cbe-94c1-44d3a0682912", "urn:uuid:ffa3af90-6058-48d0-97e8-7b9ee88a4525", "urn:uuid:187e4d57-7271-40f1-823a-191e275f699d", "urn:uuid:4b714a9f-70b9-4179-aa6b-7ca722b9853b", "urn:uuid:8079cf81-7d62-46c2-9303-d811c0caede6", "urn:uuid:d7338f96-de82-4f70-8548-4d0af0705161", "urn:uuid:939324f7-9fd8-4d8e-83f0-0a49bac175f1", "urn:uuid:1fbd5d00-70c5-4af2-9584-f3d8465d99c1", "urn:uuid:1e2f3fe8-0cf4-4588-873f-bf56b1f6a54f", "urn:uuid:ed15d3f7-d591-4e8a-896c-0a6e82fdc4e2" ] + }, { + "catenaXId" : "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361", + "children" : [ "urn:uuid:8696204b-7e2f-4359-945f-36491e2e9a17", "urn:uuid:95c99efa-8545-4bab-8ab5-89ba120f4740", "urn:uuid:7905c5c1-0965-4c77-b7fb-fe5552a9f684", "urn:uuid:04ee2a34-075d-4a14-b48f-3d5daaea1eab", "urn:uuid:299ffb29-3aa6-4a03-adb3-515747e5839b", "urn:uuid:f79a0705-6762-49d9-b4aa-58f3bc7bfae1" ] + }, { + "catenaXId" : "urn:uuid:51bdea2b-f9a3-4283-93b7-890d18996fd5", + "children" : [ "urn:uuid:90f980af-83ab-4731-bcb2-d1283db430fa", "urn:uuid:b88bfa26-d67a-4a06-a117-aaa5581fe5ec", "urn:uuid:4e093bf8-70c3-49a1-baf1-e855285f410a", "urn:uuid:f79d171c-b8a4-443e-aa5e-44b8c4863ff0", "urn:uuid:f37d6c52-4d0a-4daf-a12e-477c07bc6094", "urn:uuid:481ca7e9-b8e7-4357-b52f-6fdb89d40e3c", "urn:uuid:45b546b7-1439-4e53-ba58-4890e9a6a0d3", "urn:uuid:fbb5f81b-56be-4481-9d80-b25bd4255981", "urn:uuid:b4a6b10a-3655-47f0-a62e-368c4247e467", "urn:uuid:4c74986d-bb70-4e99-ac3e-ef6b6fdfa265", "urn:uuid:4f38da4b-eaa0-439c-88ef-19562818501c", "urn:uuid:03397882-baee-44bf-abd2-b02a0b4fadc2", "urn:uuid:3b6b09f4-5f0c-4c7e-8295-e4d2f1564698", "urn:uuid:90757687-04ad-468c-9179-447fe3557e4a", "urn:uuid:07cd1020-ad97-4f80-92a5-c865b437d97a", "urn:uuid:6c803c63-b98f-42ee-ad43-f13c3bd811de", "urn:uuid:50d02bcb-026e-4ba0-8fe8-88b6b4c5b8a0", "urn:uuid:b57e2439-e94b-4a51-ba7e-e2a17ae5f3a5", "urn:uuid:fa44f33e-17f8-426f-a050-4f64d343e54d", "urn:uuid:bbaa8934-0937-468f-99df-27784e6eff4c", "urn:uuid:9036c8f5-9233-49ec-a927-9f102d25f317", "urn:uuid:8e74dfee-938c-493b-9299-1735da3ed6df", "urn:uuid:c114479a-d9fd-45ff-9f8f-783b6e2a09a3", "urn:uuid:b335610e-7b85-4a30-8f42-70cdfbda27ec", "urn:uuid:c1fda60b-fde2-46c9-80a8-c1a8b5f22eff", "urn:uuid:29306b37-b89e-4bf5-9dc2-f92280134aac", "urn:uuid:46d192e6-e742-41b3-a469-308db2d964e8", "urn:uuid:8221f659-aaf2-4f65-871c-e7ce58d754f4", "urn:uuid:bd7d3e9e-3f47-43ef-8378-25862a735463", "urn:uuid:2168f746-6be1-477a-a66f-fa85ebc1fe7c", "urn:uuid:f7d3ad91-9616-4137-9f16-7e3879ba977c", "urn:uuid:948ece07-fc98-419f-b003-c0cf71acf71a", "urn:uuid:83d0763e-1703-4640-9e98-3055a64486f4", "urn:uuid:250c67a0-d08a-46e4-a848-7824e566083b", "urn:uuid:3407f0bd-88c7-4cb1-a895-3621413dd361" ] + }, { + "catenaXId" : "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98", + "children" : [ "urn:uuid:849284b0-4259-4ad3-bc58-88c2b15b6cde" ] + }, { + "catenaXId" : "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf", + "children" : [ "urn:uuid:6ed47271-323b-46e9-a129-9d884bd7e88b" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb", + "children" : [ "urn:uuid:202898f9-33d6-4903-89a7-91b0f4b0d40b" ] + }, { + "catenaXId" : "urn:uuid:d3270d6c-060e-48b7-a93f-e487ce6b9b97", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", + "children" : [ "urn:uuid:57fa87d4-95b6-4a25-a267-a1797100a33f", "urn:uuid:cf123e7b-b0da-41fa-a3ea-56705bb5e0cb", "urn:uuid:d3270d6c-060e-48b7-a93f-e487ce6b9b97" ] + }, { + "catenaXId" : "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a", + "children" : [ "urn:uuid:ebc20d0c-430d-44ba-836f-13edffa434c4" ] + }, { + "catenaXId" : "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a", + "children" : [ "urn:uuid:9ea2e158-ffbd-4b7c-bc09-e58100e33c87", "urn:uuid:47394171-1ea2-47c3-b8d1-7f0519c0969a", "urn:uuid:eed19a7f-6e5f-4b1b-b640-da407dbfe86b" ] + }, { + "catenaXId" : "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:007fe983-2846-47dd-9a5e-2a5c1ceaeb30", "urn:uuid:235b9405-5193-4d16-9008-05ecac2cbcbe", "urn:uuid:47c2673a-76ee-4753-bc5b-e24ee7d94575", "urn:uuid:d76ba3a8-0315-4862-8236-a9d8e274da92", "urn:uuid:8b60e9d9-83a8-4845-a7f1-4bd1e70ef274", "urn:uuid:58e8f89b-1968-415e-bd4f-e0f4d24d7553", "urn:uuid:45ff496c-e7ba-454b-b51c-50d8ad2acfc4", "urn:uuid:b56bf6fc-d1b0-4e9c-aea3-aeaca4a37f68", "urn:uuid:5c4494d2-0a14-49f7-90a0-030339bf306b", "urn:uuid:bfa1658b-e139-4cb3-8494-1933073bdcc6" ] + }, { + "catenaXId" : "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3468a376-0781-460d-8116-f856d82991d8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:a55e9718-f77b-40e1-a08e-eea698deb0f6", "urn:uuid:6431d1fa-fa3c-4213-9752-8260217568c9", "urn:uuid:ba066b66-9e9c-4bf7-97f5-ce8cbce4cbc6", "urn:uuid:3468a376-0781-460d-8116-f856d82991d8", "urn:uuid:41df6169-40a0-4ab3-a779-64ae2f077623", "urn:uuid:af37b6f8-fceb-405c-95c7-76bdd6b278b3", "urn:uuid:648e8a0a-7904-460c-a716-242c72ff30e6", "urn:uuid:41277e74-43ff-49e2-aca8-b6afc37ea9c4", "urn:uuid:c582cbde-8fdb-4f2e-be2a-3e44e5e443aa", "urn:uuid:29cb25b7-5e38-44b9-b27b-821a47ec6cb9" ] + }, { + "catenaXId" : "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:76ff608f-3cc9-4a6e-8ef9-fe5ba57dac82", "urn:uuid:96fb7c83-a15d-48d4-9fdb-42e81a2fd5e7", "urn:uuid:c839a073-b470-4d4c-af63-32ad92e1b86a", "urn:uuid:7dc1704f-e594-4598-bbe5-3203aa3a0836", "urn:uuid:b4af5cf3-4be2-4cdd-a166-8bc7f18d7c48", "urn:uuid:220e692a-9d42-4688-a7c8-5175bd91db02", "urn:uuid:cac4d270-c321-40e0-bdbf-ea70d5df4d3b", "urn:uuid:53ebf9d5-c35f-4bc0-aed9-3ad9e0753c77", "urn:uuid:57485e3d-f9e7-4ed9-9d57-af1173d2e5e7", "urn:uuid:a61a2798-31d3-42c9-b167-74af033d4bd1" ] + }, { + "catenaXId" : "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:ebe17cc4-c0ac-41db-b98a-ea34aed1bdef", "urn:uuid:8421858c-a0d4-4daa-b7f3-b18ace7551a4", "urn:uuid:0ba7eadd-324f-4d2d-965f-1ac578b6a2af", "urn:uuid:27442b4d-9b97-4448-acce-5e98d7bc791c", "urn:uuid:7edd763f-2eb0-4910-9ac7-11e315fc4d7d", "urn:uuid:645f8f05-bacd-4ab4-b736-04f65b9ae7f0", "urn:uuid:09648493-8c4b-4982-8151-4bf50e0d893f", "urn:uuid:3aeea5d6-ac9a-458b-af23-6d19d5376095", "urn:uuid:4a653ec0-4bf8-4c4f-a184-3dcd440739a7", "urn:uuid:0677a043-48e6-411e-ad9a-c43c594e5950" ] + }, { + "catenaXId" : "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:1c3c5988-b98b-4c70-8789-169bb944b1b7", "urn:uuid:eb25337d-c364-4e26-82e6-85acf4b6135e", "urn:uuid:735bec53-e99c-4a9c-825b-f73e2ad782c8", "urn:uuid:dd91b4ed-3bb6-43b6-b3bd-090c5f44f830", "urn:uuid:1b104439-3dbe-4d4f-a5b2-6c277a981a14", "urn:uuid:1453eccf-bf65-4d04-8a23-4ecb149ccadc", "urn:uuid:f7e0315d-33d7-4248-8bad-c36aa9cd28f6", "urn:uuid:04073d47-e255-41a9-9848-b45abcbd65f3", "urn:uuid:82ebf448-33d8-49e2-8fc0-72f1f8574bde", "urn:uuid:0b76c83e-6d81-46a7-b3e4-9371897399d8" ] + }, { + "catenaXId" : "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:fc71a9dc-db0c-4af7-a350-7a01336ca9b5", "urn:uuid:a70f6c08-ca8c-4ef4-af8a-3ee1ee1a767b", "urn:uuid:62da8e2a-4e70-4e75-9623-a974c1f5f096", "urn:uuid:23530c3f-3bd6-407f-bbb4-52f558c98f57", "urn:uuid:783ec9cd-ed73-4d0c-8700-a9030a535681", "urn:uuid:3c2316c2-e241-4d55-a5f0-714008fd0340", "urn:uuid:e124a42f-daf9-4d5e-a641-9cf6b1fe9d0f", "urn:uuid:5062fb21-7da4-4947-9c5e-409e2d2a23d7", "urn:uuid:9f993c03-87fe-42e3-9dbd-7473ec353f97", "urn:uuid:7c9029a9-799c-4a38-b4fd-325582da7929" ] + }, { + "catenaXId" : "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a", + "children" : [ "urn:uuid:f7ac368a-f076-4cb4-858f-38216a226fa8", "urn:uuid:9d2e254b-0f75-417a-a5ef-4c0c7d2a93a4", "urn:uuid:7c07ce4a-84d0-495c-bc6b-2e64da86605d", "urn:uuid:27ee6994-f6eb-4ced-b0fe-4e3077887b91", "urn:uuid:6f089813-c7b8-4766-bba3-7ea0c7ed464b", "urn:uuid:982caf00-48f0-4b4f-b207-8194588264f0" ] + }, { + "catenaXId" : "urn:uuid:46185580-0581-40be-8a77-ae785494bbdf", + "children" : [ "urn:uuid:78c2eb8f-8dcb-4e4b-9608-4acc3c2c8f1a", "urn:uuid:e8140097-8115-450d-96c4-f2c45c26f68c", "urn:uuid:c81f3e88-bb0c-4dc8-8a43-3f62e5511ef2", "urn:uuid:8feb8396-e23f-40ec-ad31-a6446e7006e1", "urn:uuid:626ece1c-28ee-4731-acf2-e315d6598b98", "urn:uuid:02441cb4-0531-4366-92a8-756efd4915cf", "urn:uuid:838ecbb3-28d4-443c-a29a-2762b7b5db69", "urn:uuid:88101ce2-7b64-4d82-94cc-936da164c68c", "urn:uuid:346b84a6-6d68-4941-85b2-3941bf381e9b", "urn:uuid:261f4b4b-4b37-4b55-be17-738a37208dc5", "urn:uuid:346ad14a-6789-4ed2-bc63-df1b61cf58df", "urn:uuid:a1ec5b43-5f4c-459e-80e3-195a97a10e44", "urn:uuid:8fe4d000-a3c7-4aa9-9a71-f4170a0b0bbb", "urn:uuid:e178e76e-b1f2-43a9-b8ba-20ae9de8b348", "urn:uuid:28ba248d-6cb2-46d2-8b51-39513f2e104f", "urn:uuid:357f45ab-37ff-4baf-83ef-ac27a9954f1f", "urn:uuid:40848641-e38f-4958-b0b5-bc6ca13a35f0", "urn:uuid:c0b2c683-081e-424d-a050-a25a358a2b2b", "urn:uuid:472b88a6-a6e6-42f4-96d1-af5ea480e429", "urn:uuid:6032a5f1-2ed1-46bf-bac0-8f8c57f9fed5", "urn:uuid:e59b2f5a-51c6-4abf-90f5-c026cc395c56", "urn:uuid:8cf304b0-4e83-45e6-abd9-9862a574142f", "urn:uuid:cc7e66f4-26f8-4fc4-bc77-905d63b5cb2e", "urn:uuid:a80434e0-09f5-43bc-ba17-2bf0fc426548", "urn:uuid:4f33e9dd-2d42-4c46-8305-665ab106f13a", "urn:uuid:512bff1f-36db-4fff-b2ff-ff1d3d49f0a7", "urn:uuid:80a6df34-1f60-4ffd-8c04-ccd7267af32a", "urn:uuid:2713ac59-4bdc-45e5-9ad4-0a48382a2a14", "urn:uuid:ffcd2e31-f787-4f28-824e-e682a33ee33d", "urn:uuid:7b15e05e-e290-4be3-af99-defd93a457ad", "urn:uuid:dcf5ee0d-914a-4c38-8490-1273d917bdff", "urn:uuid:5c1745f9-49da-4372-8e56-c471eb1dba10", "urn:uuid:87b14a43-97b3-44a6-919f-67ce4e2f8679", "urn:uuid:88194b66-ba53-4362-984e-95ea557c971a", "urn:uuid:49acc5c3-41fa-431b-a32f-26ff19eaf94a" ] + }, { + "catenaXId" : "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0", + "children" : [ "urn:uuid:f0f0aebb-b973-4db8-8795-628c2430d5b4" ] + }, { + "catenaXId" : "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860", + "children" : [ "urn:uuid:48d3575a-ec24-4a1f-bfe7-300480f895cd" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9", + "children" : [ "urn:uuid:33430fa7-5dba-45ef-b36c-d07183692f68" ] + }, { + "catenaXId" : "urn:uuid:ae547ab6-70a6-4b85-8283-2f2337d2d59a", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", + "children" : [ "urn:uuid:4012f317-594e-418d-80ef-4bb09f8bc174", "urn:uuid:bb4fa3b7-85a2-4cca-9451-8e4e768d7bb9", "urn:uuid:ae547ab6-70a6-4b85-8283-2f2337d2d59a" ] + }, { + "catenaXId" : "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934", + "children" : [ "urn:uuid:3278f37c-36f0-413c-846b-8fba1706895b" ] + }, { + "catenaXId" : "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc", + "children" : [ "urn:uuid:b5bb19e0-079b-42c1-a5e2-b345055d9c95", "urn:uuid:e06583c7-e83d-4cfc-bf3a-d679d35d2934", "urn:uuid:d9d526f7-87a4-4440-af75-1541a8fdcbc5" ] + }, { + "catenaXId" : "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:a07c9960-cfe5-429d-9815-800d5f74e56b", "urn:uuid:38dd1113-923f-488e-b9ee-d89b2a6b7c26", "urn:uuid:57500156-dde8-4a50-82c9-47e24460a116", "urn:uuid:77932195-e8bf-4293-a9e6-4711d153232b", "urn:uuid:b2890744-73c1-4be4-9df1-1555c8d7a155", "urn:uuid:ebfbf245-9d56-4ece-a162-69c5bc4d8591", "urn:uuid:0eefe90c-b0c1-49b0-a9f8-514c076a7b81", "urn:uuid:f4417871-a718-45a5-8ca2-274c3a31ec05", "urn:uuid:cbf2ffc5-7490-4fa4-8314-25a89937ca70", "urn:uuid:5220ddac-7e9c-4ad7-9219-6231e0c7e3e6" ] + }, { + "catenaXId" : "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:433ba97e-e23a-493d-86d5-1700afef2760", "urn:uuid:25a713ad-21ef-4a24-bb14-9feae5ad8b2b", "urn:uuid:22e962b1-441c-4eba-aa7c-3305ead3d7c1", "urn:uuid:5b4d5257-2a59-4d56-940e-f5b24f9d741a", "urn:uuid:60669883-3a79-4c8b-9c6d-20a0965d28bd", "urn:uuid:0d4d5b19-3290-46f5-9903-6f71a56e0818", "urn:uuid:f3713a7c-db74-4b71-b3e4-69e636e6bbd3", "urn:uuid:31e5fc07-7f43-42dc-9b43-923cb9770609", "urn:uuid:1fdf4b47-4fa6-4226-8f7b-2f04162b91ec", "urn:uuid:ae66882a-6285-4567-8892-2028caf2ca15" ] + }, { + "catenaXId" : "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:af7558ef-72db-46a7-9439-fc385ab551b6", "urn:uuid:39bfdac3-b74a-45fe-8d11-5314b0681c42", "urn:uuid:95105dd1-d67e-4808-8c52-4dbe70d57572", "urn:uuid:6f91b525-819e-4d72-a339-8b49f40ddf55", "urn:uuid:651257f1-1c73-4f2a-baa1-ff176c80f0e3", "urn:uuid:e0537c1b-d396-4712-969e-1d2d33f58b15", "urn:uuid:32ff8778-6e0a-4783-b6e0-eb84fc56a5ae", "urn:uuid:6d715338-4948-4962-bf94-a6b4151b1add", "urn:uuid:ac3f6ed8-5f54-486a-b1a5-6a8097c6d448", "urn:uuid:2b72a740-dee3-406d-a216-4b74bbb1367f" ] + }, { + "catenaXId" : "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:89b90098-dfdd-45f3-a5b8-1d477ba57e2f", "urn:uuid:12954486-e6b7-4c60-82ed-7b90b14523dd", "urn:uuid:ebc4c48c-6a9e-4661-adaf-9fbd15ad59fc", "urn:uuid:8fb23f83-0ec0-403b-aac3-bc3d8e78cde6", "urn:uuid:63e11994-d61f-4baf-b606-012ed635df92", "urn:uuid:ba904d14-e4c3-4b75-8718-cc9c1c004458", "urn:uuid:78da40b2-4fd0-423e-bc62-83a308a2234a", "urn:uuid:f8f4c3f2-58bd-4817-a4e4-03d7cf3b2cb9", "urn:uuid:5615b81b-8ae7-4989-aa51-4f0ba8d43194", "urn:uuid:d101b2d8-3e17-480b-878c-3f91fa09cfea" ] + }, { + "catenaXId" : "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4def8315-96e0-4586-9257-debaedff2142", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:5faa4023-52c3-4f84-80bd-48d4c0183922", "urn:uuid:4def8315-96e0-4586-9257-debaedff2142", "urn:uuid:535afa11-a298-4a36-b69b-5ae4dc3f93df", "urn:uuid:a35c20f8-397a-4aa8-87b2-0833ae9d1567", "urn:uuid:afbe8fd7-a07e-46c5-b7d1-0f840327b1ed", "urn:uuid:194f5391-68a4-49c7-ab59-5b3dae9aedb5", "urn:uuid:793febdc-5362-40a7-b08b-f068e3f64d57", "urn:uuid:466114e5-f36f-4e42-a39a-bbbae25a56d2", "urn:uuid:08cf0036-cb6b-4455-9b52-6865511ebf70", "urn:uuid:210dd676-84d6-4649-9367-7863d0e77ac0" ] + }, { + "catenaXId" : "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:a47f9658-556b-4942-82cd-c549f0afe7d5", "urn:uuid:944656c9-63b0-4fc8-92f2-66065a5e57ca", "urn:uuid:530dae21-dafd-4e35-8f86-216e4e16fd22", "urn:uuid:8cce6778-2f64-4878-bd31-e1bbda99e5cb", "urn:uuid:caac89b1-fb5f-4d20-afaf-18b61d443037", "urn:uuid:6c660959-8ccd-4e8a-ac09-a990addad46e", "urn:uuid:8e8ffc59-a7e8-42b4-9fd1-e229e50acfe6", "urn:uuid:30aa4d41-c60e-47bc-9227-ce287ca2a5d3", "urn:uuid:18c6dea0-75a3-4ab5-8408-51a08086f53f", "urn:uuid:fbd0ebe6-924d-4a07-bdc6-7503e936fa4d" ] + }, { + "catenaXId" : "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f", + "children" : [ "urn:uuid:1b32f1cb-9046-4c21-b875-ef78deeeb252", "urn:uuid:18c5bfef-7b37-4ae7-8688-98c82444ff14", "urn:uuid:1993d672-9452-4238-8a09-35755a92b6d6", "urn:uuid:e9bccae3-c2db-4e45-9ad5-157d28efef7a", "urn:uuid:cdd3702a-578d-4f12-a56b-400b602368a9", "urn:uuid:4a7f62d1-254b-401f-96b0-7db77372510e" ] + }, { + "catenaXId" : "urn:uuid:2bce0509-b94f-4da1-bb02-c38661f28bc6", + "children" : [ "urn:uuid:bac0e15a-6e07-428e-877d-41a994134d4b", "urn:uuid:25e927b1-4c28-44fc-8975-f21ce50037c4", "urn:uuid:60ae3003-2929-4413-9d0b-e760c87fb162", "urn:uuid:842ed6fd-9249-42c5-bd76-80b74df003e0", "urn:uuid:bd59e73e-7673-4b42-b045-878a142594f0", "urn:uuid:c5902f5d-246a-4569-a881-e14d3d535860", "urn:uuid:e888e125-70fd-4b47-93b7-f0239cdcf485", "urn:uuid:c3653200-b5c9-499b-9fd4-d86e46882048", "urn:uuid:606d833b-ef5f-42ef-a737-3edf3963a9e9", "urn:uuid:fd7908b8-619a-44e3-a8ff-a1dd5176f681", "urn:uuid:d93e2e1b-c93e-487c-a4b7-4e3e86da0a09", "urn:uuid:929cbc30-bef7-4428-9ea3-d41335ac66ac", "urn:uuid:11b9a51e-037b-46e0-ac73-9beac5545670", "urn:uuid:fbb04405-3ecb-4b86-b773-80ea9a190535", "urn:uuid:90fe01b3-8535-4c14-aae4-8c5712902b9d", "urn:uuid:bc0803dc-8f3b-4904-9fef-8f0215156f96", "urn:uuid:78b74e61-8437-4d60-ba9c-b2ee3ebc16a8", "urn:uuid:01365915-d0b0-4af6-bdfc-fdaf8f41b70a", "urn:uuid:4017cc16-9d27-43a6-897d-1a5d14537b8d", "urn:uuid:a2776b04-23a4-44d6-9601-7327c1f4d988", "urn:uuid:04842560-7620-4b2c-bc06-f169a13a2056", "urn:uuid:5f9c88c5-9c38-4311-bdca-6f1a6d48b606", "urn:uuid:f658ac98-3bc4-4129-8afd-39439532ed9e", "urn:uuid:579c1e5f-1509-4f37-b072-d05e65f97c13", "urn:uuid:5f4e293c-3a94-47ea-8d25-ea055526940e", "urn:uuid:a8e35f99-b9fd-4f1b-82b0-8dc7706cfb43", "urn:uuid:f6d5590c-3449-434f-8b02-06db4ae4fce2", "urn:uuid:b7e9f1c5-8aac-4032-9abf-f315b9d1463b", "urn:uuid:f10e32fc-613e-4259-928c-21c021e6323c", "urn:uuid:b368cd4e-f1a9-438d-b6ec-22a31ae7f5d6", "urn:uuid:262be818-78a2-4ef0-b6ee-164c16994ced", "urn:uuid:06f37cc3-ad17-4d8f-af0b-1f090d493c39", "urn:uuid:1ed9a0c6-8b2b-4e91-b617-55c0dd538ecf", "urn:uuid:96c4b0ba-10df-468f-a676-1d9bd81beedc", "urn:uuid:a1caf9d1-b6e7-4edb-bfe4-0335ec79fc5f" ] + }, { + "catenaXId" : "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b", + "children" : [ "urn:uuid:18fe6906-3c9c-44fc-852d-9ffdcc99e1e2" ] + }, { + "catenaXId" : "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c", + "children" : [ "urn:uuid:16cc0157-a0ff-4389-b69f-07b6fe3c9a73" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58", + "children" : [ "urn:uuid:220aa390-1d75-4054-a13a-989be84494a9" ] + }, { + "catenaXId" : "urn:uuid:6f2f87ab-4d50-4f1e-a7c2-10b7ee8ebfed", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", + "children" : [ "urn:uuid:226e3a68-f426-4336-9a8a-749392e573c0", "urn:uuid:4a92e3e6-74eb-4dcf-81a8-fe709ef22f58", "urn:uuid:6f2f87ab-4d50-4f1e-a7c2-10b7ee8ebfed" ] + }, { + "catenaXId" : "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6", + "children" : [ "urn:uuid:a645261b-6959-49ea-b499-263697b0d439" ] + }, { + "catenaXId" : "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2", + "children" : [ "urn:uuid:fd082e40-921f-4edc-a0ef-1ba537037e52", "urn:uuid:cec27d59-ae20-42da-8581-c700fe276cf6", "urn:uuid:99838ebb-ef4b-4c46-92b7-0c49da1add4e" ] + }, { + "catenaXId" : "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:52ff2271-1760-4177-8926-7bc6bfdedbb8", "urn:uuid:a18a174a-cc3f-4ee2-bad9-5b40c4dd99fc", "urn:uuid:e96b2a91-84d4-44dd-bd19-453e3410606c", "urn:uuid:9b45f29c-66b1-41bc-870f-1628a197d34f", "urn:uuid:3c080fe7-56f2-4936-8a16-18aaeb6cfa2e", "urn:uuid:65f89941-e4fa-4c05-a754-1f5276a8824c", "urn:uuid:ab781f98-f8f6-43df-8850-d7d768a7a53b", "urn:uuid:def0d8da-9f73-4251-8091-340753fb6d28", "urn:uuid:5cc5fecf-91fd-4861-b0c3-a6b45951bf68", "urn:uuid:8645b324-2f85-4f0c-8165-52c94fee58ca" ] + }, { + "catenaXId" : "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:156c2f6e-11f3-4b3a-b3ea-4139e7587499", "urn:uuid:f4d7a77f-289d-4f0b-8393-1f9da35e9dfe", "urn:uuid:9445f5d4-b001-4446-9b5c-8b0f82b02aa6", "urn:uuid:650b07a4-3517-4b34-81f6-e4ff826cb02e", "urn:uuid:801bf463-df9b-463b-83aa-0aa2bdb9ac67", "urn:uuid:8438c05c-e83e-40de-8390-f680f04c34a7", "urn:uuid:c9112a9e-3422-4b6b-97a0-64f6fe85723c", "urn:uuid:240b1f65-255a-4c42-87e9-93547fce1434", "urn:uuid:c2ebfaee-8c96-4c22-b173-e26a6df708f3", "urn:uuid:34272bf8-15c3-4012-9b3e-ceb644324408" ] + }, { + "catenaXId" : "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:d473a7b3-a631-43e0-80cc-54a29b20bfea", "urn:uuid:07bbcf40-b47e-44fd-aa5a-cfa78af454fa", "urn:uuid:b01346f1-167d-45ad-9a6a-aaa377d0f068", "urn:uuid:e439e2ec-7c00-4531-87f9-dcfe4e8ab914", "urn:uuid:52b0eca5-c9c5-4153-93fa-7a87b75b6978", "urn:uuid:e9960765-9f92-4ca4-a35c-0c67c97ef8fa", "urn:uuid:5468d886-ba66-4e05-8d15-be313aaf2d53", "urn:uuid:176d012d-28be-4178-94d6-18c60066fa30", "urn:uuid:1d74b2e0-46b1-4d0f-84ef-82df29f1eb96", "urn:uuid:ddccd241-f220-494b-8912-16e1e8962f8d" ] + }, { + "catenaXId" : "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:ace8b8d9-200b-4f78-8d58-74d8f2510ced", "urn:uuid:00bd9128-01f0-4e29-8135-38000bbab3fa", "urn:uuid:85d87a97-bd12-4729-87c7-bc4685b484cf", "urn:uuid:adc5bae4-57d4-41c0-bd6a-3b1c118e9f3a", "urn:uuid:cb2f372c-2c62-4993-a213-29c005ad9c7c", "urn:uuid:e420cd78-b6ed-4070-b5f7-bc8d6ee31bda", "urn:uuid:e5cf697e-1819-438a-829e-4e358e07faad", "urn:uuid:17c36ce4-fbd6-4f00-96f0-59018d27c688", "urn:uuid:8158cdda-fffc-4b5b-86cc-62c6aa78a93b", "urn:uuid:ffdeeab4-5658-469b-ad26-9fbbb46c50b2" ] + }, { + "catenaXId" : "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:0baad4e3-2995-45ba-a24c-1d7e322ab578", "urn:uuid:8955c779-2d6f-4071-a54c-5395e08e4695", "urn:uuid:00951502-5f39-4b80-b516-b69d700f42c1", "urn:uuid:b39bbd1b-4a93-4ad4-9620-2a62e7ec7a6c", "urn:uuid:bd39f0eb-30b2-40c3-a264-036f8bb52925", "urn:uuid:c03ca80f-b45e-4b5d-b90f-f9e3f87d537f", "urn:uuid:62563826-5754-48f5-b908-97b0a923b3a2", "urn:uuid:89bc2c99-6a2d-4183-8f64-18bc2d72b3a2", "urn:uuid:330c151c-1d59-46f3-b00b-2034e65c7d3e", "urn:uuid:36e339dd-9c90-4026-a936-76f78c63b51b" ] + }, { + "catenaXId" : "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:e30220cf-939d-4ede-9a5d-1eda753c459b", "urn:uuid:0aa24f09-1ed4-4b55-9b83-c2f414c01006", "urn:uuid:c6056982-b687-42b0-ab76-7dea6f7016db", "urn:uuid:83bc874b-19dc-4f48-916e-4e79ba84ea49", "urn:uuid:0b425390-236b-44a9-9ebd-1973919d273f", "urn:uuid:5d3ea352-3af3-4c4c-a02d-fe945da89d12", "urn:uuid:b3e1a3d1-6975-4a7b-8dc6-dbbbd0a0bb3f", "urn:uuid:2e4f070f-4bbb-4663-905c-8d16f4c0692d", "urn:uuid:7d60bca9-aad3-4939-a434-ce4f26d4dd86", "urn:uuid:2e3a8225-8fdf-44d2-b45a-424d02dd9f86" ] + }, { + "catenaXId" : "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba", + "children" : [ "urn:uuid:c6ebbaee-76cb-458f-8f60-4813cd34769b", "urn:uuid:4e546115-8a9e-4522-8592-f995c7151983", "urn:uuid:71ff564d-8266-45be-a950-c5cea397c602", "urn:uuid:588e2a8d-d880-4150-9dd8-efad35cb8210", "urn:uuid:4b5223df-bab8-4ecb-aa3a-6ae094b69885", "urn:uuid:4dbb86b7-5f2c-407f-ac3a-1cedf876e390" ] + }, { + "catenaXId" : "urn:uuid:96f4dcd3-b5b4-4d56-917a-4a5ad9668ce0", + "children" : [ "urn:uuid:9478e3e2-7716-429f-b709-62a06e83286a", "urn:uuid:3dfb5a47-ea06-4645-8582-ce11f5517fb4", "urn:uuid:d16d3485-92a6-408b-b1ec-102412315acb", "urn:uuid:7b6f48f0-48db-4825-8fb2-aadecb0fd5b0", "urn:uuid:c174dfcf-567c-415b-b0cb-6a4a59f7934b", "urn:uuid:a83123f5-e58e-41e5-8f65-70ce14f6d19c", "urn:uuid:c6109698-9d76-467e-b126-136cda9583a1", "urn:uuid:5e804f47-4831-414c-96db-43fa1438174c", "urn:uuid:33f01141-bc0f-475d-9c8e-0cf2121c4556", "urn:uuid:6bfaa801-4ade-4d5b-9be6-659f7ece61ee", "urn:uuid:402a1282-877d-4450-b20d-1ac2b5d29824", "urn:uuid:c2a913ef-9d54-4610-b786-ad70a9570e40", "urn:uuid:e43847f4-7dbd-40b3-85c9-98ef8c7240c6", "urn:uuid:8c14cd71-2f6c-448f-9713-fa0a13bb85c1", "urn:uuid:a7d6c254-f9f6-4533-95f2-1432a1851b42", "urn:uuid:8f3f417f-af9b-46e8-915b-304c582abe9b", "urn:uuid:c847fb7a-4c76-4aa0-9170-f422ec3c4dc3", "urn:uuid:d6ae50cd-4b04-4e6b-8ed2-8f0a8f38cec2", "urn:uuid:6afbd9ce-4796-4268-ad46-47fe9487968d", "urn:uuid:688e3a45-596a-4f5d-b5ac-cba79e2843ee", "urn:uuid:20d9781b-be2b-4375-9653-45aea945638d", "urn:uuid:213c6064-127a-46c4-905d-37a82bc367a8", "urn:uuid:028cf02c-0687-4a87-aa87-c38c74af04ea", "urn:uuid:cd8b0275-15cb-4aac-8a2b-f56757c716d6", "urn:uuid:0616945c-0c35-465c-935c-ef8cc9c9ef57", "urn:uuid:d4d9be86-d529-4cb8-a484-d6ba58f58562", "urn:uuid:45bbe2ee-d1b2-41be-b0af-62b5214c80ae", "urn:uuid:e58a0fd7-9a83-4027-8bb1-e028d2aa67cb", "urn:uuid:92a205c4-2623-404c-9cf3-33b136995fef", "urn:uuid:b8c4a37d-0e14-4f6c-8d93-254edc742d7d", "urn:uuid:43cd2be5-6e55-4f4b-8206-23ca1970f765", "urn:uuid:73fd5254-6c3e-4893-9d0d-aaecaa82d3f2", "urn:uuid:b21ff073-aa03-48ec-98db-a89b0ef928bb", "urn:uuid:a6cc0fab-64f4-493a-aff8-8f43d6a493e2", "urn:uuid:2ce96d48-3d69-476a-aede-0a2d2b3e89ba" ] + }, { + "catenaXId" : "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6", + "children" : [ "urn:uuid:98ac4634-bbc6-4e0c-9351-99a50d0eea31" ] + }, { + "catenaXId" : "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0", + "children" : [ "urn:uuid:d6fca6e1-30ef-48e6-81bb-5a9034712ef8" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88", + "children" : [ "urn:uuid:c908e6db-2895-43b8-872d-96632dae7406" ] + }, { + "catenaXId" : "urn:uuid:b4e69125-e78f-4417-9151-bd718e47b8ab", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", + "children" : [ "urn:uuid:b5cba17a-396d-48c1-a7f4-d9eafbeb287c", "urn:uuid:f305f29c-52b3-4d12-8f2a-8ae8f7482a88", "urn:uuid:b4e69125-e78f-4417-9151-bd718e47b8ab" ] + }, { + "catenaXId" : "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb", + "children" : [ "urn:uuid:b006db33-ac4f-43d2-b14a-5c8d0f0ddf74" ] + }, { + "catenaXId" : "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431", + "children" : [ "urn:uuid:d9a3c72c-290b-4e79-93e0-81a55a719371", "urn:uuid:168f57e3-e9a3-41a4-aeef-1af954ce4bdb", "urn:uuid:fdc2f314-5d51-4124-89fe-f3e6ca029c54" ] + }, { + "catenaXId" : "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:933c49f6-14d6-4fe0-9e78-2713b89b669f", "urn:uuid:3ac697f6-334c-4317-a52f-75695a16305c", "urn:uuid:e281ecbc-edde-4066-9278-371b10deac41", "urn:uuid:7a667e69-f9f8-4278-985f-97401d53b5f4", "urn:uuid:a7e74503-841e-4f71-ab62-95d1b3f88823", "urn:uuid:03590da3-52df-4937-b496-817ab9ee8220", "urn:uuid:b9a48bb1-447f-44b8-ba86-440b45b79950", "urn:uuid:faefffbd-c5ab-470d-88b0-855e0e13b0ee", "urn:uuid:c72e0a9d-2a65-4bbd-830c-2d9d917b3665", "urn:uuid:6dea285e-f0ca-4781-b96e-1b8673f917e2" ] + }, { + "catenaXId" : "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:517b2d44-d181-44c9-943c-0a2c7c8ed281", "urn:uuid:91181135-d86e-4f19-ae00-05e7156c82a6", "urn:uuid:006d36b4-7199-4f2c-a422-020d8741bd5b", "urn:uuid:69370cee-dd37-4ae4-a474-d16ace4bf845", "urn:uuid:a3b2f127-6f17-4170-84fc-5b4eb269726f", "urn:uuid:b0347ca6-3007-4f6f-bf53-05596f0ad25e", "urn:uuid:3095d690-82b3-4ba6-9f70-ae82514a446c", "urn:uuid:56651041-4dd0-4b9d-8f37-abf9dbd85379", "urn:uuid:2c0f1099-bf8a-4377-a6c5-12c7de4e9d50", "urn:uuid:931179f8-5e26-4e87-816d-1843075f9405" ] + }, { + "catenaXId" : "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:dbafd0f8-5610-423f-8a06-d4e58e6f1db3", "urn:uuid:7f21ea39-392e-4fb8-8e3d-ef8a123e6cc0", "urn:uuid:9e0b3633-fb9f-4ecf-bba6-91f8c079d819", "urn:uuid:d23d3f05-5354-4702-bd89-a15c54d0a996", "urn:uuid:3260d82c-a2a2-4ca9-a759-951548fd4117", "urn:uuid:eec3cd71-3906-478b-9b21-646f016d0c7f", "urn:uuid:94541325-990c-4c63-83bc-cdc417f8f91c", "urn:uuid:32d053ed-cb12-475a-90cf-b649a2710727", "urn:uuid:5e1f4f9c-a190-4519-8f60-75e0aa4b8735", "urn:uuid:1cc1e232-058e-48e2-9527-9f7f72f42e78" ] + }, { + "catenaXId" : "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:7cfd29d4-9942-448e-8cd3-b67f1bc3f61f", "urn:uuid:557cf5c3-e26e-4e53-9e26-db8dc4dc3b13", "urn:uuid:7437e5bb-2f1e-46a6-90a9-3accc1fd7bd9", "urn:uuid:d4826c58-4547-40fd-869c-9525df3ea6d2", "urn:uuid:279058d3-07bb-48d5-8de8-16c7d77c550b", "urn:uuid:cfb77d79-aae6-472c-82cc-568b6e2a135d", "urn:uuid:919a68a7-6ac5-47e2-a68b-16b9d7448f9b", "urn:uuid:6c4f4e8d-35f3-4a3f-93b2-7b4ede5599b7", "urn:uuid:a3c5e1db-6e38-4ab8-aa2e-b61d30ae2dae", "urn:uuid:b5505189-fc11-4ec8-b264-1fd8da3f0dda" ] + }, { + "catenaXId" : "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:242f0d73-42f2-4e18-8948-6ef105f2ffbb", "urn:uuid:545adf74-373c-4114-ae26-2242ecd3c412", "urn:uuid:dd80649b-a6c7-46ff-8837-a3b9c9539f26", "urn:uuid:3d95abd2-1ea3-474d-ab1d-d3b71ab12905", "urn:uuid:dbcf7ce2-8af4-4a0d-8def-8caa6dcff462", "urn:uuid:7284197c-f138-4952-b1f0-2de5d100545c", "urn:uuid:31ee39e5-6c7e-4dd7-abbc-64fdb53f21d9", "urn:uuid:b2bec595-21f3-44e4-8ad0-d9e2fd26092d", "urn:uuid:f7a515d7-abfb-40b6-9354-36fea2d3566d", "urn:uuid:5490c1fb-2079-40dc-9dfc-518c6acd9622" ] + }, { + "catenaXId" : "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:bc4d43a8-27ee-441e-b71a-4abf06200af7", "urn:uuid:c981d69b-5879-43f6-8620-ab959b4847e2", "urn:uuid:05aa2c3c-dbd4-4d40-8ac9-e146cc08792b", "urn:uuid:b5c3f10b-fad0-478d-b866-1e9d6bfae79f", "urn:uuid:990a94b9-74b7-49d4-979f-1a7cd54582ef", "urn:uuid:1056ef6d-7e8c-4476-8c27-173a6559c31a", "urn:uuid:c5611423-c732-4ebb-8f6d-307e6ddd270c", "urn:uuid:35f6d659-ab83-41f6-a75b-ce52c4420c51", "urn:uuid:e11ed42e-c7b6-4f1d-98ec-361ade1141c1", "urn:uuid:953dc898-5435-40af-bbc2-63dd5f59c059" ] + }, { + "catenaXId" : "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0", + "children" : [ "urn:uuid:0f6c0c9c-b92f-4d91-a861-e2781557ed26", "urn:uuid:ca407511-a6cd-4012-bbb4-02d3429063b0", "urn:uuid:a412beb7-4d10-44d4-9a20-3bbe907a9c22", "urn:uuid:e9514e80-062a-4294-8b50-b80bf3606300", "urn:uuid:5d4fd8e5-e932-4148-851a-a17ca98bf5ea", "urn:uuid:c90ec9ca-bad9-47bf-9be6-01e7c14f6a56" ] + }, { + "catenaXId" : "urn:uuid:58c67bf7-3d86-49e0-b2d5-e8ba78760967", + "children" : [ "urn:uuid:a35a7b36-a84e-4730-af58-818e95e1151a", "urn:uuid:355f4608-3f67-4d2f-9128-fcf5fd63f603", "urn:uuid:f5560b4a-5b31-4ea4-bf87-b151406f99c0", "urn:uuid:c481c5f4-9964-4719-b593-b1c4b074c2b0", "urn:uuid:81b66313-093c-4ed1-baa0-3f9b0e71b9b6", "urn:uuid:8275d7fe-1e1b-4821-bb43-677f115362d0", "urn:uuid:3bc2e32a-2acc-4f9f-a2a8-7f82a27ea86e", "urn:uuid:ce61739e-d257-4c52-879c-700d6bf74473", "urn:uuid:8b401c1e-8249-4408-be4b-c498ce365201", "urn:uuid:970133f5-f8e7-40de-a30f-03a51821d6af", "urn:uuid:d684bf7c-e3c2-4f63-931c-62ca29d53432", "urn:uuid:faa134b5-b18b-483e-92cf-766463f54d15", "urn:uuid:652dbf9f-340c-45be-8b9e-4cea6dfaf8b9", "urn:uuid:f7f083b3-b920-44d8-835c-afdf315e9be7", "urn:uuid:16644601-04b0-4dd4-8ac1-107a454af160", "urn:uuid:540abe25-385a-494e-a8c6-cc0c5e1e3c23", "urn:uuid:b1cb2ab5-f878-4832-9769-ea6400f69833", "urn:uuid:db3e45c4-49f2-4b40-bb0c-289a91ef430d", "urn:uuid:67b866ae-dada-4898-a5fa-c54bcd03fa84", "urn:uuid:ef7cb20a-aa86-462b-b2e7-6e4216887961", "urn:uuid:b352c9a6-8ce4-4ec7-89d5-77bee402cdd7", "urn:uuid:7314031a-a6ae-4a93-be51-89c0d18f2836", "urn:uuid:519d731d-c5af-4b3e-ba5c-8ee519b72381", "urn:uuid:f4207530-7f08-4c3f-a216-6a4bf344ca8e", "urn:uuid:08a4bc67-25d1-4d50-8791-8a16d3e2feaa", "urn:uuid:4e4556b7-8dec-488d-8e56-340423db48bd", "urn:uuid:2367aa96-84b0-4e44-9784-f361ee9c189b", "urn:uuid:9e0b3452-97f4-4ef0-ad1d-334c2db1d8eb", "urn:uuid:89c0070b-335e-4ed0-b613-c2cf27308621", "urn:uuid:ac945b98-2365-4fcf-8f33-476092472d4f", "urn:uuid:fb5e67c6-6b03-4bf6-bb6b-29ba5c1cbddb", "urn:uuid:12c7e3aa-3dca-4391-a11e-c8d66629a9c4", "urn:uuid:a90d2148-ecd7-43d1-9ad6-5165661c2e1a", "urn:uuid:f62f1a68-c7de-4a6d-9684-f2782336e431", "urn:uuid:af370535-dd9e-4c29-9904-a0fd559cd8b0" ] + }, { + "catenaXId" : "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5", + "children" : [ "urn:uuid:73cd3a10-4017-4eee-a91b-f9c82af384a0" ] + }, { + "catenaXId" : "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe", + "children" : [ "urn:uuid:829b9a9c-ef1c-4c3a-ba08-280610f50e9a" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140", + "children" : [ "urn:uuid:f37662f0-9229-4932-9e90-a98167fcf63e" ] + }, { + "catenaXId" : "urn:uuid:9e25cc3b-4fad-459f-83c4-f08f91657811", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", + "children" : [ "urn:uuid:cd27fb0b-8264-4182-9ff9-e45897760b24", "urn:uuid:a9af614a-4e93-4f51-9fb8-bc3f7f6bd140", "urn:uuid:9e25cc3b-4fad-459f-83c4-f08f91657811" ] + }, { + "catenaXId" : "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1", + "children" : [ "urn:uuid:51a3ac5b-1ac1-46cb-a969-7bae3dbebe40" ] + }, { + "catenaXId" : "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036", + "children" : [ "urn:uuid:92d438a7-0ee7-4e39-a878-6cafb9f2f050", "urn:uuid:0a94380f-8cb3-4d98-8fc1-704394548fa1", "urn:uuid:d2f7cd1d-19e7-4d8a-82c4-352952cb0b2b" ] + }, { + "catenaXId" : "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:663acff1-3a43-4268-99e2-b8f7748b3ca0", "urn:uuid:61ccf5a5-66d6-4cb9-acbd-6041bb7b47fc", "urn:uuid:b5be50d0-f419-4e4a-b945-f47f0d4ee25f", "urn:uuid:037c5f37-e472-45c1-a959-6edba9699f9c", "urn:uuid:6bd9abe9-0b86-4648-93e5-af8d9a72f04b", "urn:uuid:a01d5fc0-332f-48d7-bf06-dd3533977a94", "urn:uuid:e9b394db-96e1-4c30-9031-b3cecc14c53c", "urn:uuid:f7f74137-db0e-4797-bbb1-4e78df587bad", "urn:uuid:379be11c-57c0-4445-867e-a8e531665aa9", "urn:uuid:d47795e1-56a1-4e19-b718-7bfb0193a553" ] + }, { + "catenaXId" : "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:607ad661-65fd-4535-b100-62119f605a17", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:7db9e722-fccb-42ad-a116-007aa51e1e6c", "urn:uuid:89e88370-f1c4-47ff-b3f0-4f35f8b8e6de", "urn:uuid:82c4fc0c-e407-480a-9dac-11eacfc79172", "urn:uuid:a84da49e-e428-4559-ab91-48d0e1d1f4d4", "urn:uuid:7fd72f60-778b-45f0-8e1a-258e3f01dc47", "urn:uuid:b3141ae1-6520-48eb-8c2a-ad5998740f5c", "urn:uuid:ee47a66a-bd12-49c0-ab14-f088f5934a9e", "urn:uuid:607ad661-65fd-4535-b100-62119f605a17", "urn:uuid:2dbc6e50-c203-4b45-bbf7-ee661845c82b", "urn:uuid:7a4fbd99-f638-4531-9b0d-cc0e8bc9a90a" ] + }, { + "catenaXId" : "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4d917918-5d80-4152-822f-95180227262e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:37498d38-50af-415d-bd76-1e216f574fca", "urn:uuid:4d917918-5d80-4152-822f-95180227262e", "urn:uuid:ee1bdbc2-2560-449b-b72f-b1cdec94d761", "urn:uuid:7434e7ce-9617-4225-8972-4fac6a9ba210", "urn:uuid:53894191-0f85-4f03-a78d-5d2d1ea5fb57", "urn:uuid:79a2fadd-fab5-444a-b949-49c7c6f87ea2", "urn:uuid:7350a153-fe1a-426b-9f16-c043e8eda5fa", "urn:uuid:6f26fe47-0df7-421b-96b4-7d1064de96ce", "urn:uuid:10e3242e-fb1f-4b56-bcc2-710b18f53369", "urn:uuid:118186ee-b5b3-43b5-bef1-b501387d9e5d" ] + }, { + "catenaXId" : "urn:uuid:427725ea-b017-447e-9120-159db70c5cde", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a613e4de-007a-438e-9014-539df063c200", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:427725ea-b017-447e-9120-159db70c5cde", "urn:uuid:aefb0112-71d3-4203-ab07-373fb7f1861e", "urn:uuid:b86a3016-021f-4512-8061-ab5aa72ca912", "urn:uuid:0b1aba46-e412-47b5-9246-e78378e7c4af", "urn:uuid:5f27cb03-04c7-4fac-b0ea-1328beec9f46", "urn:uuid:473cb587-a99c-4078-af8d-634db85b988a", "urn:uuid:cfd3329a-466d-48e3-a816-fd259c7a909e", "urn:uuid:a613e4de-007a-438e-9014-539df063c200", "urn:uuid:58d77d03-7e43-4891-b43d-eac9cb87974c", "urn:uuid:f9a45d7d-87b0-480e-979a-f31d13763ebb" ] + }, { + "catenaXId" : "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:5cf71993-194e-478c-b05b-3e153fa1f858", "urn:uuid:c7b05e40-07b4-4a9f-9cf9-e936180e6852", "urn:uuid:ae134a55-487f-432e-b2f1-cca2cb544a55", "urn:uuid:23e551c1-c874-426f-9eac-d59204e273b1", "urn:uuid:2b52d7d1-bfb6-4f09-8f2a-703b03c8c335", "urn:uuid:75e28783-53bc-4205-b198-f2458561b8d4", "urn:uuid:18f87370-d447-432b-8807-fe2ff0ff9c05", "urn:uuid:d219c35f-f8a0-4f49-a7f7-6d70df84701a", "urn:uuid:d4653938-400c-4dfc-a13d-14c7a7bfb0b4", "urn:uuid:711c5375-ef9a-404a-99b3-51d12f68bb34" ] + }, { + "catenaXId" : "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:d2169000-4c11-4518-b082-42c7a641276f", "urn:uuid:54e325b9-83a9-46b2-a8fc-dfaaf8c45435", "urn:uuid:8ccb1ba3-e420-4818-b986-f729e4dc2c32", "urn:uuid:a4b06421-6d35-41d3-900c-576df3a2798c", "urn:uuid:39bd6581-fa58-4cfc-9918-d7a5175ca4f9", "urn:uuid:d1d7c478-ab8e-42d4-b889-91bb56766d71", "urn:uuid:93223dc2-9f16-4d46-a13a-1ee58ae94557", "urn:uuid:e9150659-fe6a-4a9c-bfe2-f3035c4cf988", "urn:uuid:1bc8f74d-02a0-44be-859b-80e6c4d3c2f2", "urn:uuid:34a8ce0c-8d9a-405b-bf01-5d9131fe939c" ] + }, { + "catenaXId" : "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d", + "children" : [ "urn:uuid:25fab579-d7b0-47b6-a417-fecf22bc99ad", "urn:uuid:f1949f14-0f79-48ed-82a1-b8ce2e4e619a", "urn:uuid:f4b6e138-5c00-4133-bd56-b93bbc15f381", "urn:uuid:3c2937b3-f2d4-46f6-8abb-efae5329aa57", "urn:uuid:6b46f065-ed9b-47bb-a687-22f3092e5986", "urn:uuid:8349ba69-600a-42ea-9bb2-09ce472559ff" ] + }, { + "catenaXId" : "urn:uuid:ca642636-d354-4221-9bf2-9bfd0f73d15d", + "children" : [ "urn:uuid:3bb1ab5c-4735-456c-b082-ff32fcce53c0", "urn:uuid:c5c96b95-8645-47b0-889b-5cae83bb31fb", "urn:uuid:ad902944-cacd-4b87-b880-aadd4e0102fd", "urn:uuid:b115975c-5782-42d4-a130-615faf60d0d1", "urn:uuid:b276ce7b-0476-4bff-a686-84a88ca173f5", "urn:uuid:c485a5d9-26b4-40b9-b66e-4fe8b5a01cbe", "urn:uuid:c7e5b255-f19d-4a34-a632-a6c2a266c148", "urn:uuid:741682ea-f384-4ad3-ab3e-0d6d9b1c03d2", "urn:uuid:2a117941-9566-407c-82d4-5c6d26c7a820", "urn:uuid:5d4be00d-f4aa-4fde-ad20-79898702b19a", "urn:uuid:a86753ef-d526-42e4-9c03-cbab94f10d73", "urn:uuid:d11bea26-eefc-471b-a06e-c9669a153dd3", "urn:uuid:402766de-9419-4c90-9106-af80d5a99b01", "urn:uuid:deed575e-59df-4d77-94b1-0c2e4a3bf15e", "urn:uuid:a9830aae-8a30-452a-8b74-cb4bf64469b7", "urn:uuid:7eb9c492-8bc4-4429-b1f9-b8c8cf2a9f17", "urn:uuid:ecfc696b-1c8d-4b77-9955-023f139b8322", "urn:uuid:72f5c8f6-2687-4ba0-a9d3-20eab0c44946", "urn:uuid:1bcd563f-cce1-4805-9b41-138f72c14a7d", "urn:uuid:0b56ddd6-d64d-432b-bcdb-3ef349dd42be", "urn:uuid:e49a69f9-470a-4356-aab3-d7f7d52967a5", "urn:uuid:28264837-efc0-4b4a-ab20-882910a2e174", "urn:uuid:27068f44-96e6-4532-8945-816c22b106c9", "urn:uuid:db8946a7-ab3d-45ee-a345-c49726021a0c", "urn:uuid:af0050e5-7268-4ccf-9ae0-20468d372810", "urn:uuid:378ac667-0b78-4584-8cc9-f86b0717a5db", "urn:uuid:cfa90568-2e8d-4de7-9ed9-d73c4b0df0e4", "urn:uuid:7e3ce380-be74-4159-912a-462a0eb425a1", "urn:uuid:1f90d132-820c-4ceb-b36f-1a319f67a039", "urn:uuid:886e51c5-974b-4630-bcd1-c9f5827d3144", "urn:uuid:776b5497-1d21-4d91-ad4e-c781579eb3d0", "urn:uuid:0096184b-a46a-42cf-9a8a-bef41ff6704e", "urn:uuid:bd7ceee0-9867-4d71-a167-694e5827ecd2", "urn:uuid:005bbe03-c0fc-4286-8a65-3e4c86c23036", "urn:uuid:82ce10a3-f99a-45fb-8459-fdb04b08dc7d" ] + }, { + "catenaXId" : "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69", + "children" : [ "urn:uuid:d073c75d-d248-47d1-be2c-53809defb10e" ] + }, { + "catenaXId" : "urn:uuid:961122be-b51f-48c6-bf33-739105a25092", + "children" : [ "urn:uuid:e8db82eb-f2bb-4949-b038-558fa3c9c2eb" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42", + "children" : [ "urn:uuid:6a76f31a-3f21-4528-9240-a21d7d955233" ] + }, { + "catenaXId" : "urn:uuid:76f63806-a591-42ab-9ce4-79e433eec2b3", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", + "children" : [ "urn:uuid:6d8d1663-2f66-407c-be74-12b01eff8f49", "urn:uuid:d4a3c703-53fc-4032-a3ae-e01a89dd4a42", "urn:uuid:76f63806-a591-42ab-9ce4-79e433eec2b3" ] + }, { + "catenaXId" : "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623", + "children" : [ "urn:uuid:7f479070-492b-4d38-b837-da5915f134ee" ] + }, { + "catenaXId" : "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1", + "children" : [ "urn:uuid:6dc8934f-423b-4320-ac9b-a07e7a19c7e0", "urn:uuid:c56d2478-266f-4759-ab1d-40aee84e4623", "urn:uuid:147e4107-4195-4033-ba65-4a03f68bd37a" ] + }, { + "catenaXId" : "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:48344695-a0e6-4b7c-a1c8-0323d4cdebb3", "urn:uuid:f925379a-35fb-42d8-ae76-7c44e40105fe", "urn:uuid:2b7b2097-0e8a-46db-bbd3-18c0042bbee5", "urn:uuid:2a165d67-f61d-48b9-aa29-de91b5e2679c", "urn:uuid:12bfc8ef-a1d6-45e8-b0b7-5545a2195a80", "urn:uuid:15ca9ffe-53b8-45fc-9242-f4416709f8a5", "urn:uuid:c8c18049-6f14-4b89-9caf-5d6d1a5a8ea1", "urn:uuid:d5632abf-4bba-47cd-b457-f2ce5e3bf3ce", "urn:uuid:42e55b10-bbc9-4fee-b319-3bd63b763055", "urn:uuid:efc15623-e10c-491d-bfc4-e1faafe935c9" ] + }, { + "catenaXId" : "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:c8567d02-f012-4f68-a682-e8e771067760", "urn:uuid:f0ea1790-04a8-4e14-b874-7d0b0bea7c14", "urn:uuid:f326b689-91c0-49dd-b65d-241a5fa93703", "urn:uuid:05c264a4-4c21-44f3-b557-371018ae7edb", "urn:uuid:d3dded80-a4a4-44b1-aadd-f874c6fc3f73", "urn:uuid:00a1511b-5f89-4723-ae81-5a42e48aadfb", "urn:uuid:0ec83893-ffa9-4026-a472-59e245492503", "urn:uuid:311d3fe0-5867-4a81-aba0-3fa609bb2966", "urn:uuid:0bdad4f1-f54f-4c09-94c0-2de2483f6d5f", "urn:uuid:646f2bfe-2a06-43f0-aea8-bc427eb90de3" ] + }, { + "catenaXId" : "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:cb59afdf-c904-44a7-b611-89a4ab7226f0", "urn:uuid:4765546f-18ea-4bbb-b496-356b09594725", "urn:uuid:efdf1990-e2fc-4edf-85cf-ebc497f561e4", "urn:uuid:73670c00-2f86-464f-8d86-d021e4c31cfa", "urn:uuid:e25f993a-bc78-445c-9e76-81a5d0ff86d7", "urn:uuid:dd29fc11-4974-4a12-af89-51b0c742836d", "urn:uuid:99ec0599-ed17-44bc-886e-5c8391e54136", "urn:uuid:71a18048-47f6-4987-bfba-e7370c149bad", "urn:uuid:be6ea122-2af2-4c97-b0c1-d75eb3b809bc", "urn:uuid:25e509cc-8bf8-4628-8615-41c6a10bcec7" ] + }, { + "catenaXId" : "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:7c580a57-130f-4b9c-bda0-ba89f6b9ee18", "urn:uuid:40e03396-382c-4ae4-b0de-dbc42450fdef", "urn:uuid:6a8a58aa-a2d8-43fb-8b41-a019e3fcafce", "urn:uuid:ad50e36a-ac8e-4498-84c3-361264322e46", "urn:uuid:549f5a55-0240-4bcb-8784-0c4d54665ca6", "urn:uuid:3237c558-6e1f-4428-82f8-36dfe6d382ca", "urn:uuid:6cddaf04-58fe-4f7a-9c36-0d56a7a25593", "urn:uuid:aa174ce9-8437-4555-9242-c8653022ff04", "urn:uuid:f325a1cf-7276-4c65-bc1a-c4e8c2a79fbf", "urn:uuid:f9280afe-50d1-4148-8972-366cfd03118f" ] + }, { + "catenaXId" : "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:011b9972-ed4a-4015-9c45-9a4ccef51c72", "urn:uuid:57f0eeec-bb52-4b94-9d99-62c6e11fba30", "urn:uuid:15ffabec-e5ca-46cf-87ae-c0e3e7fc820b", "urn:uuid:c3cc5b12-b387-4e79-acfe-0a4e9d63c222", "urn:uuid:523274be-6319-4cfe-89ac-f1e3c4f32404", "urn:uuid:ebc465be-e39d-4268-8608-8038175d922a", "urn:uuid:4ca4a8f8-8217-4c40-82d1-dbfe32f4d821", "urn:uuid:d1dd1fe0-ddc6-47fe-ac82-09ef5189f675", "urn:uuid:fa65c383-dd42-4cdb-a336-6ec4c28c3a11", "urn:uuid:83e407c1-35d6-40ac-b01c-8a0b3709c927" ] + }, { + "catenaXId" : "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:f55a0b77-1e35-4835-a462-42693ac358df", "urn:uuid:5bd198b7-f310-4200-986f-18e139de3b86", "urn:uuid:89366393-a1f8-4a3e-8ea3-ac0706011491", "urn:uuid:fd44a549-c16e-470c-88cd-e2fedc17722d", "urn:uuid:1a2f731a-d299-4e5f-a756-7242dff48f47", "urn:uuid:4f6fd882-7a7e-4764-bffc-a88b8065126f", "urn:uuid:3e106adf-2299-4f2f-98ab-bf23858e8683", "urn:uuid:85048bee-412f-4cd8-a6f4-8115d7e83e34", "urn:uuid:b36e1983-70ad-4dc8-9740-b2be49a3c4cb", "urn:uuid:cfa884d3-9311-4c59-a926-026e71ea717a" ] + }, { + "catenaXId" : "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d", + "children" : [ "urn:uuid:b82e2ae8-b682-4f50-8461-fb0e19ff935e", "urn:uuid:2e6cdf5f-3f82-4377-b76b-ca0fefbc5836", "urn:uuid:04230ad8-fd3d-4736-96cf-18db5ee5f3a4", "urn:uuid:994f36dc-b022-402d-9619-adaba85c8364", "urn:uuid:cf0beb4b-fe81-4a32-b694-a95f55a97c1d", "urn:uuid:2f36b9ac-ddb2-414c-b3f3-5069c1a72d31" ] + }, { + "catenaXId" : "urn:uuid:5f58af00-a85e-4e33-9d7d-d021dfb8530f", + "children" : [ "urn:uuid:b7e98b7c-e28b-4b55-9b1b-dde2c82d8284", "urn:uuid:286d3893-cc8a-4a20-a9a7-d6cd2e7d060c", "urn:uuid:bf82fc98-ed33-4cf0-aa4c-f908582b8c9f", "urn:uuid:3b9e91f5-a7c2-4878-bf05-1ca82b9ac925", "urn:uuid:f0fa5698-b23c-4e07-b9ac-e0d94bb8cc69", "urn:uuid:961122be-b51f-48c6-bf33-739105a25092", "urn:uuid:a1bed12c-24aa-405d-b513-e27d7b823329", "urn:uuid:659d4f63-4f3a-42d6-a529-99b5d29c19b6", "urn:uuid:2e0b9d50-38e6-4776-b31f-1890a3c5d79a", "urn:uuid:c92321f3-b53f-4935-978b-e33bee6dc612", "urn:uuid:ae9beb58-afb3-49f3-897b-17dff3784741", "urn:uuid:ea075d7a-e871-48c9-a448-1d4884b0e231", "urn:uuid:561b0741-6b41-42d3-95ee-b2f0d0563a26", "urn:uuid:46e3bc1b-e158-4098-9eb7-c891f73352db", "urn:uuid:0dc30548-c507-4bd1-81cb-006d521b92f4", "urn:uuid:20c5ccff-5f1c-4cdb-8727-16efd47c1414", "urn:uuid:21d496fa-addc-4c70-87bc-54f1018815ea", "urn:uuid:23e30efe-e925-4132-bb7c-f89a9b5e46d7", "urn:uuid:0f94a5ec-b0af-4be1-a9d7-035f285cbf98", "urn:uuid:1162726d-3aa8-4973-856a-d880e8032f82", "urn:uuid:32b09ff1-37c4-4d03-a5f0-25fe0dabbfe7", "urn:uuid:81b1870e-7b2f-45dc-9e13-5bb57ce3fb25", "urn:uuid:c1156524-1313-456e-b147-4f495f158583", "urn:uuid:d663b5e8-0594-4b2e-85df-6016be37f216", "urn:uuid:04479d1c-1d77-4b82-a85f-514f20ff3672", "urn:uuid:8dc5f023-fe95-40c9-808b-bd98d86c43ea", "urn:uuid:bf3b94a0-1d08-476e-b22f-ca0bc712d211", "urn:uuid:d537fe2e-5b76-4f15-bb13-bc5f3be9aee3", "urn:uuid:11cdab08-699b-4646-ab47-475addeabd96", "urn:uuid:17c56482-4f8c-4afb-a56e-58f3b11cf38e", "urn:uuid:9355267e-cf1f-4074-be48-3abd518df5e7", "urn:uuid:075ae995-6bff-41fa-afee-68bc2be0f494", "urn:uuid:ea5dc893-09cf-43a7-beb2-efe85d61f6d3", "urn:uuid:1dab4f44-ba98-4b5f-a2a7-5178f3f57aa1", "urn:uuid:67a17a76-8f6f-4096-a684-8ee90410235d" ] + }, { + "catenaXId" : "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab", + "children" : [ "urn:uuid:94bfd3e0-46b4-4633-bb56-7ffee15a2184" ] + }, { + "catenaXId" : "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a", + "children" : [ "urn:uuid:549df514-2045-4fb4-88c2-45e444fd93bb" ] + }, { + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d", + "children" : [ "urn:uuid:0b468211-405e-4061-a727-776149fc35a8" ] + }, { + "catenaXId" : "urn:uuid:08d040d4-54b9-40b6-8096-a1e738141249", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", + "children" : [ "urn:uuid:55506428-2817-42b5-be07-1c981f2526f3", "urn:uuid:baec15f3-c0db-40e3-8ea9-39bf5f57551d", "urn:uuid:08d040d4-54b9-40b6-8096-a1e738141249" ] + }, { + "catenaXId" : "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc", + "children" : [ "urn:uuid:49f3433b-5b0f-45a2-a18d-c18dd274d24b" ] + }, { + "catenaXId" : "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3", + "children" : [ "urn:uuid:6df1ee71-6ef6-4fa7-aa59-0f0a02e11aa1", "urn:uuid:9b46d019-3f91-46d2-8bd6-0859c4c4e0cc", "urn:uuid:9fe020cb-a3ac-428d-b4b1-5f5db7f11937" ] + }, { + "catenaXId" : "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:fbfe9af6-b3b2-4adf-84cf-a4c207f97269", "urn:uuid:c763574b-66a9-479d-a92c-b118df928acc", "urn:uuid:c82c6a1f-fb7c-475f-b174-8d941cfca83b", "urn:uuid:d67a794a-de61-4982-93bb-6bc7b05d0267", "urn:uuid:ec7e181b-05b8-4bce-bba6-545f07b8c9e9", "urn:uuid:71faa009-f692-4594-b844-3a097f6fbd9b", "urn:uuid:6cf882e6-65ef-42d7-a5b0-e72c171a6297", "urn:uuid:29d6558e-3b8e-43ab-8dd3-14599aaab884", "urn:uuid:a692f526-d422-49e7-ab12-f4d1c12a92ce", "urn:uuid:9a58b68b-b1e0-491e-bf81-ab0d96703db9" ] + }, { + "catenaXId" : "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:910e680d-58db-4d55-aba2-4c41e508cfbe", "urn:uuid:4d618004-d053-49a4-a719-3d5abec9f22e", "urn:uuid:f00729da-5ba9-4df3-9f5f-3b179aa5fa47", "urn:uuid:9ff57bea-d0b5-4fc7-9326-3592c82aef82", "urn:uuid:a3dd3eb0-9ae8-42d5-8492-25ba53bc1bad", "urn:uuid:c36f28c1-3387-430d-ae92-dab47e164968", "urn:uuid:54c1f3d4-9a7e-48c5-8b88-ddb9218143ba", "urn:uuid:9fb428dc-2d92-45ce-92be-6e081db86591", "urn:uuid:4fa8222d-194e-48fc-86b5-b8ab22b2aba5", "urn:uuid:ea377416-f2d6-407d-8f45-c6bcf475a53d" ] + }, { + "catenaXId" : "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:2e46729e-25d6-4e09-a2a3-1e177a2a1614", "urn:uuid:8cfcf8a6-9ba2-492b-8823-a4244b2fd7bf", "urn:uuid:8c8357b5-ddad-4fb9-9b45-8bae2d3325fd", "urn:uuid:a24721cd-353d-4326-8eb1-9590404ae846", "urn:uuid:808fff1c-c51e-4626-b421-0aeac38e770a", "urn:uuid:911e0652-7ebb-482b-b529-69341a50fc39", "urn:uuid:3cdc3082-c2ff-4af1-9611-a32a139520ff", "urn:uuid:ed2744d6-fcff-48ce-b844-526d6ad90eaa", "urn:uuid:54212860-8f98-43a9-92e5-ab5d10e6263b", "urn:uuid:2d1a08a5-a751-4fd3-b140-8d08caa2c005" ] + }, { + "catenaXId" : "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:02b07d55-55a9-41c5-baf9-efb0a09f7677", "urn:uuid:14058a4a-6387-4a1a-89de-f76c3167466e", "urn:uuid:d5c53363-0f8b-4807-8116-ca1d027c328a", "urn:uuid:d43d35e9-d3b3-488e-be34-28ce97d35b38", "urn:uuid:e889ad79-78ca-4c6c-b5e8-80fbb8b52578", "urn:uuid:0d53c741-1be3-4328-a521-6933b92464ad", "urn:uuid:844de915-38c0-46dc-8b7d-92758022448b", "urn:uuid:1ff0ea24-f747-487c-ae2b-6a2dd21c8fe8", "urn:uuid:1ef0182c-95d4-49d8-9e37-083ec8c4d4dd", "urn:uuid:25ec5907-9e6b-415e-b362-0090fe8a203c" ] + }, { + "catenaXId" : "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", + "children" : [ "urn:uuid:d3f27925-229e-43f9-9355-71f9a0d7a4ee", "urn:uuid:8df201c9-da09-40e7-89da-0b9ceaffc802", "urn:uuid:0a96eda7-f9ea-4367-8d18-4b1da0d7dc1f", "urn:uuid:bae1ebc2-f929-4cb2-be80-37ea03c881c0", "urn:uuid:5a358f8e-a948-429e-9fb8-ab44a0f4a7c4", "urn:uuid:8ac09fbf-72d1-4f55-a04a-6990ca07cfd2", "urn:uuid:02e787fb-db07-4ab8-90d3-5cffca0a3886", "urn:uuid:188036a7-ad66-45bb-9381-40a5e13b9d53", "urn:uuid:87101a51-1e6c-4bf0-b5b9-0581ff4e725c", "urn:uuid:b79538fc-4d13-44f1-b849-76fa7644df27", "urn:uuid:377fa314-fea6-4068-a239-0b26b439e932" ] + }, { + "catenaXId" : "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:45260051-797c-4192-a267-13464af74381", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029", + "children" : [ "urn:uuid:9a3a86a6-3693-4b4e-9241-2fdf384fe855" ] + }, { + "catenaXId" : "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc", + "children" : [ "urn:uuid:df405076-800e-46d7-ad1d-dbc91e316ede" ] + }, { + "catenaXId" : "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b", + "children" : [ "urn:uuid:fd4d5141-472b-441a-8710-df04b13d6685", "urn:uuid:6d6e4c79-8253-47a4-9d06-261954aa7ed3", "urn:uuid:edcd3212-ad54-4988-b27f-91d91cedbad8", "urn:uuid:550b3813-b92e-49a9-a094-19999a60fdd2", "urn:uuid:a2c6d378-8680-4266-9d21-6d0b94539498", "urn:uuid:399af3fb-8a7f-463f-8935-8d682a0a570f", "urn:uuid:61beb1cb-6c6c-43f8-8c2d-89745dd7bd47", "urn:uuid:7894ab1e-89bf-41e0-8841-9427128f3355", "urn:uuid:45260051-797c-4192-a267-13464af74381", "urn:uuid:43421b27-e457-48b2-ac2a-ebca2d77c029", "urn:uuid:d192e21f-2ac4-471b-976a-ca9a59961ecc" ] + }, { + "catenaXId" : "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629", + "children" : [ "urn:uuid:835ccc91-698a-4a37-9a06-5594f15df8cf", "urn:uuid:23d1cece-e76e-41c6-813a-c4aa04145419", "urn:uuid:18a93e0f-f7f9-44c4-8035-20539c22314e", "urn:uuid:4b95360d-a4de-4434-9cb6-49179cdcc9e3", "urn:uuid:36b18a0c-53d1-4ec1-99c3-22b532f8db8d", "urn:uuid:1fac913c-8dcd-45a0-98f7-2f05f89f584b" ] + }, { + "catenaXId" : "urn:uuid:0c097fb6-03f9-4475-a8fb-e06939da78b0", + "children" : [ "urn:uuid:258f44c9-1949-4325-a7e2-20b56b253afc", "urn:uuid:4cc0fbca-a79c-475f-b4e4-74a3b1801770", "urn:uuid:bae7c9de-1c79-497a-bd62-8875e5f68371", "urn:uuid:63cfd847-e616-41e7-b619-66c151de263c", "urn:uuid:f85de088-e3b7-4c46-a71a-17902f084dab", "urn:uuid:69b93ab9-8eee-43a0-8519-36dc91ce826a", "urn:uuid:e477aa4f-cea1-49d2-ac7d-70f81db9cd68", "urn:uuid:6787e020-5152-4591-8038-8ff1b6ea6c28", "urn:uuid:a4bb030e-ae6d-4707-b4e7-b4a7a1e6b6c8", "urn:uuid:26de743a-19cf-4246-b088-24776e73372e", "urn:uuid:d42439ef-fba8-44be-8075-07c01c3da1a9", "urn:uuid:c65c1a00-c32a-451a-87dc-24ba8de0befc", "urn:uuid:75703d2d-a923-4664-8357-f5d0d5702713", "urn:uuid:f90625ca-12a8-48d1-94c9-313e6b363b77", "urn:uuid:56ad3dde-6206-4c98-a404-93ed709016f0", "urn:uuid:805e82c3-a261-4f69-9326-d8d02c49cc32", "urn:uuid:1d19bd1d-25da-4406-8143-c43c3633b96b", "urn:uuid:ade56700-8c33-42eb-9253-038666690dd0", "urn:uuid:c13cc8f9-43c5-40e8-b213-bc96f9ed1b2e", "urn:uuid:83f4e19e-f203-4cee-8f59-300f09605948", "urn:uuid:5dd133f0-54d3-4086-a48b-f327e2ab3b3b", "urn:uuid:da3cb6d1-2023-4dbe-bfbf-905885c70c27", "urn:uuid:92a6002e-4921-4573-9e75-98f9574bae08", "urn:uuid:5f3253fb-1b4c-4d0d-9776-13367722f31a", "urn:uuid:51f23ae0-f5af-4001-987f-ef71ab6c9349", "urn:uuid:dd9c2b24-22e0-4cfd-ba14-d33e528be3f3", "urn:uuid:6cad7bf5-f537-464d-961c-ca354c57102c", "urn:uuid:aa1d0eee-72d3-4cd7-8da3-96a2ae0c5534", "urn:uuid:025d9b1d-3430-41d8-8f77-0d67c8795e8b", "urn:uuid:d0b5117d-1c02-4be8-9f4e-689f5e80e790", "urn:uuid:9f9502b7-1ac3-441a-affc-1b4b00943463", "urn:uuid:705596ec-8705-4f18-a7da-ddb1661aa606", "urn:uuid:30e5edde-ebee-4f8b-95ee-eab271304395", "urn:uuid:8e26ccd0-6f59-4568-ac12-a3ebaa6200d3", "urn:uuid:930cb2ce-7412-4121-8a7b-24b0927a9629" ] + }, { + "catenaXId" : "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", + "children" : [ "urn:uuid:8d366081-5d6f-47d2-bd7b-0fa6241cb2aa", "urn:uuid:e0efabc8-3d20-4c31-a98a-c72bf4a717a3", "urn:uuid:5c941efa-a74d-468a-b73c-e10c5684391e", "urn:uuid:32bc8a04-f995-415c-9812-716f768aca30" ] + }, { + "catenaXId" : "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", + "children" : [ "urn:uuid:f39ef86f-c1be-4c09-b61f-b7d12db688e5", "urn:uuid:93aab108-d421-420d-9f18-967f4ba5a55e", "urn:uuid:33c40622-6e9b-478e-a6dd-caeb5deaea51", "urn:uuid:9cd763dc-a258-4e8e-bc32-200647016ad3" ] + }, { + "catenaXId" : "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", + "children" : [ "urn:uuid:884c4fff-44f1-495b-9faa-c9b338d3a0b9", "urn:uuid:b5f69c2b-2640-4634-9040-deb78c251f8a", "urn:uuid:22e1a55d-b713-4652-a647-f3e10bf21654", "urn:uuid:1eee08c5-ad4e-42bc-9cea-98a0cf3a8a8a" ] + }, { + "catenaXId" : "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", + "children" : [ "urn:uuid:3a90004c-8c41-4046-9471-c21a9fe3f3b4", "urn:uuid:e170d0a8-00bf-49a6-8048-e6aeabc286bc", "urn:uuid:a0ca972d-a4c8-49a8-89b0-5825e87b4d8f", "urn:uuid:14e7fe6d-3d8c-4aa7-a3e2-8b337327f7fa" ] + }, { + "catenaXId" : "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a", + "children" : [ "urn:uuid:19d0c853-bbc8-4e1b-ac98-ffb7d9a0c350", "urn:uuid:e3a368e5-c4e6-4e59-be7a-77a6846c404c", "urn:uuid:884c62c4-773f-407a-b1a6-b84cd75c3326", "urn:uuid:a549669c-6709-4956-b9c8-a5b708d1873b" ] + }, { + "catenaXId" : "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", + "children" : [ "urn:uuid:b8836ae9-cb32-46b8-ba7d-2e170fb60280", "urn:uuid:c3124ddd-1174-4ed3-ae67-e37f21f34f8f", "urn:uuid:cc8af08d-0aeb-44b5-9add-fef236721d91", "urn:uuid:08d6776b-1ef7-4de9-9e01-c06392f3442a" ] + }, { + "catenaXId" : "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154", + "children" : [ "urn:uuid:939aee14-2326-4703-9634-2033acde9e90", "urn:uuid:1ffb9813-7a5f-49fd-87e5-1ff50b5e4d85", "urn:uuid:ef681011-1486-4081-aba8-4e75cdd5b62f", "urn:uuid:6b2b1c96-23b3-44bb-8a23-f43e8afda33d", "urn:uuid:1b6c824f-f352-4991-a23a-bc3783178682", "urn:uuid:49801bd9-32a9-4e76-8e7f-1b043dd2b422" ] + }, { + "catenaXId" : "urn:uuid:6b29e53f-0b70-4edf-99a8-32ba0e00e161", + "children" : [ "urn:uuid:141479d1-932c-4c05-97ce-b99bf39eef85", "urn:uuid:9068d4b8-b96e-4479-b0b5-a8be63e2143b", "urn:uuid:ca346e6e-e206-4165-9743-28c080b32154" ] + } ] +} \ No newline at end of file